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

:root {
  /* Variant 1 kleurenpalet */
  --cream:          #F5F0E8;
  --cream-dark:     #EDE7D9;
  --sand:           #E2D6C0;
  --warm-mid:       #C4A882;
  --terracotta:     #B5622A;
  --terracotta-dark:#8C4A1E;
  --bark:           #2E1E0F;
  --bark-mid:       #4A3220;
  --bark-light:     #6B4C32;
  --white:          #FDFAF5;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', sans-serif;

  --radius: 0px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--bark);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* =====================
   NAVIGATIE
   ===================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(245, 240, 232, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sand);
  height: 72px;
  display: flex;
  align-items: center;
  padding: 0 56px;
  justify-content: space-between;
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(46,30,15,0.07); }

.nav-logo {
  font-family: 'Cormorant SC', Arial, serif;
  font-size: 26px;
  font-weight: 100;
  letter-spacing: 6px;
  color: var(--bark);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo em {
  font-style: normal;
  color: var(--bark);
}

.nav-center {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-center a {
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--bark-light);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 3px;
}
.nav-center a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--terracotta);
  transition: width var(--transition);
}
.nav-center a:hover { color: var(--terracotta); }
.nav-center a:hover::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.lang-switch {
  display: flex;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 400;
}
.lang-switch a {
  cursor: pointer;
  color: var(--warm-mid);
  text-transform: uppercase;
  transition: color 0.2s;
  text-decoration: none;
}
.lang-switch a.active { color: var(--bark); font-weight: 500; }
.lang-switch a:hover { color: var(--terracotta); }
.nav-divider {
  width: 1px;
  height: 16px;
  background: var(--sand);
  margin: 0 8px;
  align-self: center;
}
.nav-social-link {
  display: flex;
  align-items: center;
  color: var(--bark-light) !important;
  transition: color var(--transition) !important;
  padding-bottom: 0 !important;
}
.nav-social-link:hover { color: var(--terracotta) !important; }
.nav-social-link::after { display: none !important; }

.lang-sep { color: var(--sand); pointer-events: none; }

.nav-shop-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px;
  background: #C4A882;
  color: var(--bark);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}
.nav-shop-btn:hover { background: var(--bark); color: var(--cream); }
.cart-count {
  background: var(--bark);
  color: #C4A882;
  font-size: 10px;
  font-weight: 500;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* =====================
   HERO (Variant 1)
   ===================== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: 72px;
}

.hero-left {
  padding: 80px 64px 80px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.hero-left::after {
  content: '';
  position: absolute;
  bottom: 48px;
  left: 56px;
  width: 40px;
  height: 2px;
  background: var(--terracotta);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 32px;
  font-weight: 400;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--terracotta);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(52px, 5.5vw, 78px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--bark);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 300;
}

.hero-sub {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--bark-light);
  max-width: 380px;
  margin-bottom: 52px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
}
.btn-primary {
  display: inline-block;
  padding: 15px 38px;
  background: #C4A882;
  color: var(--bark);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.btn-primary:hover { background: var(--bark); color: var(--cream); }

.btn-text-link {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bark-light);
  text-decoration: none;
  border-bottom: 1px solid var(--warm-mid);
  padding-bottom: 3px;
  transition: color var(--transition), border-color var(--transition);
}
.btn-text-link:hover { color: var(--terracotta); border-color: var(--terracotta); }

.hero-stats {
  margin-top: auto;
  padding-top: 48px;
  display: flex;
  gap: 40px;
}
.stat-item {}
.stat-number {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--bark);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-mid);
}

.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.hero-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 40px;
  object-fit: contain;
  display: block;
  transition: transform 8s ease;
}
.hero-right:hover img { transform: scale(1.03); }

.hero-painting-card {
  position: absolute;
  bottom: 40px;
  left: -1px;
  background: var(--white);
  padding: 20px 24px;
  border-left: 3px solid var(--terracotta);
  max-width: 280px;
}
.painting-card-eyebrow {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 6px;
}
.painting-card-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--bark);
  margin-bottom: 4px;
}
.painting-card-meta {
  font-size: 12px;
  color: var(--bark-light);
  line-height: 1.5;
  margin-bottom: 14px;
}
.painting-card-price {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--bark);
}
.painting-card-price small {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--warm-mid);
  font-weight: 300;
}

/* =====================
   SECTION GEMEENSCHAPPELIJK
   ===================== */
.section-wrap { padding: 96px 56px; }
.section-wrap.bg-white { background: var(--white); }
.section-wrap.bg-cream { background: var(--cream); }
.section-wrap.bg-bark { background: var(--bark); }
.section-wrap.bg-sand { background: var(--cream-dark); }

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}
.section-title-block {}
.section-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 10px;
  font-weight: 400;
}
.section-title {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 300;
  color: var(--bark);
  line-height: 1.1;
}
.section-title.light { color: var(--cream); }
.section-title-rule {
  display: block;
  width: 36px;
  height: 2px;
  background: var(--terracotta);
  margin-top: 12px;
}
.section-link {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  text-decoration: none;
  border-bottom: 1px solid var(--terracotta);
  padding-bottom: 2px;
  transition: color var(--transition);
  white-space: nowrap;
  margin-bottom: 6px;
}
.section-link:hover { color: var(--terracotta-dark); }
.section-link.light { color: var(--warm-mid); border-color: var(--warm-mid); }

.filter-btn {
  display: inline-block;
  padding: 8px 20px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--sand);
  color: var(--bark-light);
  background: transparent;
  transition: all 0.2s;
  cursor: pointer;
}
.filter-btn:hover {
  border-color: var(--warm-mid);
  color: var(--bark);
}
.filter-btn.active {
  background: var(--warm-mid);
  border-color: var(--warm-mid);
  color: var(--bark);
}

.filter-axes {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 6px;
}
.filter-axis-btns {
  display: flex;
  gap: 8px;
}
@media (max-width: 640px) {
  .filter-axis-btns { flex-wrap: wrap; }
}

/* =====================
   RECENT WERK (Variant 3 stijl, V1 kleuren)
   ===================== */
.paintings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}
@media (max-width: 980px) {
  .paintings-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 680px) {
  .paintings-grid { grid-template-columns: repeat(2, 1fr); }
}

.painting-card {
  cursor: pointer;
}
.painting-card:hover .pcard-img img {
  transform: scale(1.05);
}
.painting-card:hover .pcard-overlay {
  opacity: 1;
}

.pcard-img {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  margin-bottom: 12px;
  aspect-ratio: 1;
  padding: 14px;
}
.pcard-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform var(--transition);
}
.pcard-overlay {
  position: absolute;
  inset: 0;
  background: rgba(46, 30, 15, 0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.pcard-overlay-btn {
  padding: 10px 22px;
  background: #C4A882;
  color: var(--bark);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.pcard-overlay-btn:hover { background: var(--bark); color: var(--cream); }

.pcard-available {
  display: none;
}
.pcard-sold-dot {
  position: absolute;
  top: 11px;
  left: 11px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E81A1A;
  box-shadow: 0 0 0 2px rgba(232, 26, 26, 0.25);
}

.pcard-title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--bark);
  margin-bottom: 3px;
  line-height: 1.2;
}
.pcard-meta {
  font-size: 11.5px;
  color: var(--bark-light);
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}
.pcard-price {
  font-size: 14px;
  font-weight: 400;
  color: var(--bark);
}
.pcard-price.sold {
  font-size: 11px;
  color: var(--warm-mid);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* =====================
   DETAIL PAGINA
   ===================== */
.detail-section {
  padding: 80px 56px;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 64px;
}

.detail-image-sticky {
  position: sticky;
  top: 92px;
  flex-shrink: 0;
  max-width: 55%;
}

.detail-frame {
  border: 1px solid rgba(196,168,130,0.3);
  padding: 12px;
  background: var(--cream);
  display: block;
}
.detail-frame img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 70vh;
}
.detail-info {
  flex-shrink: 0;
  width: 400px;
  max-width: 100%;
}
.detail-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 10px;
}
.detail-thumbs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--cream);
  padding: 6px;
  cursor: pointer;
  opacity: 0.55;
  border: 1px solid transparent;
  transition: opacity 0.2s, border-color 0.2s;
}
.detail-thumbs img.active,
.detail-thumbs img:hover {
  opacity: 1;
  border-color: var(--terracotta);
}

.detail-info {}
.detail-status-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 6px 12px 6px 10px;
  border-radius: 2px;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
}
.status-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.detail-status-sold {
  background: #E81A1A;
}
.detail-status-sold .status-dot {
  background: #fff;
}
.detail-status-sold .status-label {
  color: #fff;
}

.detail-title {
  font-family: var(--serif);
  font-size: 50px;
  font-weight: 300;
  line-height: 1.05;
  color: var(--bark);
  margin-bottom: 6px;
}
.detail-title em { font-style: italic; }
.detail-year {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--warm-mid);
  margin-bottom: 36px;
}

.specs-list {
  margin: 0 0 32px;
  padding: 0;
  border-top: 1px solid var(--sand);
}
.spec-row {
  padding: 14px 0;
  border-bottom: 1px solid var(--sand);
}
.spec-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-family: var(--sans);
  margin: 0 0 4px;
}
.spec-value {
  font-size: 14px;
  color: var(--bark);
  font-weight: 300;
  margin: 0;
}

.detail-desc {
  font-size: 15px;
  line-height: 1.9;
  color: var(--bark);
  margin-bottom: 40px;
  padding-left: 16px;
  border-left: 2px solid var(--terracotta);
  font-style: italic;
  font-family: var(--serif);
  font-size: 17px;
}

.price-block {
  background: var(--bark);
  padding: 28px 28px 24px;
  margin-bottom: 14px;
}
.price-block-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-mid);
  margin-bottom: 8px;
}
.price-big {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 22px;
  line-height: 1;
}
.price-big small {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--warm-mid);
  font-weight: 300;
  margin-left: 6px;
}
.btn-buy-full {
  width: 100%;
  padding: 16px;
  background: var(--terracotta);
  color: var(--white);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}
.btn-buy-full:hover { background: var(--terracotta-dark); }

.detail-note {
  font-size: 12px;
  color: var(--warm-mid);
  line-height: 1.75;
  text-align: center;
  padding-top: 4px;
}

/* =====================
   OVER DE KUNSTENAAR (Variant 3 stijl, V1 kleuren)
   ===================== */
.about-section {
  padding: 96px 56px;
  background: var(--cream-dark);
  display: flex;
  gap: 72px;
  align-items: flex-start;
  justify-content: center;
}

.about-text {
  flex: 1;
  max-width: 560px;
}

.about-image-wrap {
  flex-shrink: 0;
  width: auto;
}

.about-frame {
  border: 1px solid rgba(196,168,130,0.4);
  padding: 10px;
  background: var(--white);
  display: inline-block;
}
.about-frame img {
  display: block;
  width: auto;
  height: auto;
  max-height: 380px;
  max-width: 100%;
}
.about-caption {
  margin-top: 10px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--warm-mid);
  text-align: right;
}

.about-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}
.about-title {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 300;
  color: var(--bark);
  line-height: 1.1;
  margin-bottom: 0;
}
.about-title-rule {
  display: block;
  width: 36px;
  height: 2px;
  background: var(--terracotta);
  margin: 16px 0 28px;
}
.about-body {
  font-size: 15px;
  line-height: 1.9;
  color: var(--bark-light);
  margin-bottom: 36px;
  max-width: 520px;
}
.btn-outline {
  display: inline-block;
  padding: 13px 32px;
  background: #C4A882;
  border: 1px solid #C4A882;
  color: var(--bark);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--transition);
}
.btn-outline:hover {
  background: var(--bark);
  color: var(--cream);
  border-color: var(--bark);
}

.about-image-wrap {}

.about-caption {
  margin-top: 10px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--warm-mid);
  text-align: right;
}

/* =====================
   AGENDA – wit, 2 beurzen + nieuwsbrief naast elkaar
   ===================== */
.events-section {
  padding: 96px 56px;
  background: var(--white);
}
.events-section .section-eyebrow { color: var(--terracotta); }
.events-section .section-title { color: var(--bark); }
.events-section .section-title-rule { background: var(--terracotta); }
.events-section .section-link { color: var(--terracotta); border-color: var(--terracotta); }
.events-section .section-link:hover { color: var(--terracotta-dark); border-color: var(--terracotta-dark); }

/* 3 gelijke kolommen: beurs · beurs · nieuwsbrief */
.events-newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
}

.event-card {
  background: var(--cream-dark);
  padding: 32px 28px;
  transition: background var(--transition);
  cursor: pointer;
}
.event-card:hover { background: var(--sand); }

.event-card-month {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 14px;
  font-weight: 400;
}
.event-card-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--bark);
  margin-bottom: 6px;
  line-height: 1.2;
}
.event-card-location {
  font-size: 13px;
  color: var(--bark-light);
  margin-bottom: 16px;
}
.event-card-dates {
  font-size: 13px;
  color: var(--bark-light);
  margin-bottom: 24px;
  font-family: var(--serif);
  font-style: italic;
}
.event-card-btn {
  display: inline-block;
  padding: 9px 22px;
  border: 1px solid #C4A882;
  background: #C4A882;
  color: var(--bark);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
}
.event-card-btn:hover {
  background: var(--bark);
  color: var(--cream);
  border-color: var(--bark);
}

/* Nieuwsbrief blok – terracotta, zelfde hoogte als beurs kaarten */
.newsletter-block {
  background: #C4A882;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.newsletter-block .event-card-month {
  color: rgba(46, 30, 15, 0.6);
}
.newsletter-block-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--bark);
  margin-bottom: 10px;
  line-height: 1.2;
}
.newsletter-block-sub {
  font-size: 13px;
  color: var(--bark-light);
  line-height: 1.7;
  margin-bottom: 24px;
  flex: 1;
}
.newsletter-block-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.newsletter-input {
  padding: 12px 16px;
  background: rgba(253, 250, 245, 0.45);
  border: 1px solid rgba(46, 30, 15, 0.2);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--bark);
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-input::placeholder { color: var(--bark-light); }
.newsletter-input:focus { border-color: var(--bark); }
.newsletter-btn {
  padding: 12px 20px;
  background: #C4A882;
  color: var(--bark);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border: 1px solid var(--bark);
  cursor: pointer;
  transition: all var(--transition);
}
.newsletter-btn:hover { background: var(--bark); color: var(--cream); }

/* =====================
   FOOTER – compact, lichte zandtint
   ===================== */
footer {
  background: var(--cream-dark);
  color: var(--bark-light);
  padding: 36px 56px 28px;
  border-top: 1px solid var(--sand);
}

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

.footer-brand {
  display: block;
  font-family: 'Cormorant SC', Arial, serif;
  font-size: 26px;
  font-weight: 100;
  letter-spacing: 6px;
  color: var(--bark);
  margin-bottom: 6px;
}
.footer-tagline {
  font-size: 12px;
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 260px;
  color: var(--bark-light);
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--sand);
  font-size: 11px;
  color: var(--bark-light);
  text-decoration: none;
  transition: all 0.2s;
}
.footer-social a:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

.footer-col h4 {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
  font-weight: 400;
}
.footer-col a {
  display: block;
  font-size: 12px;
  color: var(--bark-light);
  text-decoration: none;
  margin-bottom: 7px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--bark); }

.footer-bottom {
  border-top: 1px solid var(--sand);
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: 11px;
  color: var(--warm-mid);
}
.footer-lang {
  display: flex;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.1em;
}
.footer-lang a {
  cursor: pointer;
  color: var(--warm-mid);
  text-transform: uppercase;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-lang a.active { color: var(--terracotta); }
.footer-lang a:hover { color: var(--bark); }

/* =====================
   DIVIDER
   ===================== */
.ornament-divider {
  text-align: center;
  padding: 0;
  height: 0;
  overflow: visible;
  position: relative;
  z-index: 2;
}
.ornament-divider span {
  display: inline-block;
  background: var(--cream);
  padding: 0 16px;
  position: relative;
  top: -12px;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--warm-mid);
  letter-spacing: 0.1em;
}



/* =====================
   ANIMATIES
   ===================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow  { animation: fadeInUp 0.7s 0.1s both; }
.hero-title    { animation: fadeInUp 0.7s 0.25s both; }
.hero-sub      { animation: fadeInUp 0.7s 0.4s both; }
.hero-actions  { animation: fadeInUp 0.7s 0.55s both; }
.hero-stats    { animation: fadeInUp 0.7s 0.7s both; }

/* =====================
   SCROLL INDICATOR
   ===================== */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 10;
}
.scroll-hint-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--warm-mid));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}
.scroll-hint-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-mid);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* =====================
   MOBIELE NAVIGATIE – basis (desktop ongewijzigd)
   ===================== */
/* display:contents laat .nav-menu op desktop volledig uit de layout verdwijnen,
   zodat nav-center en nav-right exact als voorheen direct in de nav staan. */
.nav-menu { display: contents; }
.nav-toggle,
.nav-cart-mobile { display: none; }

/* Inline-grid layouts omgezet naar klassen (zodat ze mobiel kunnen stapelen) */
.cart-layout     { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.checkout-layout { display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: start; }
.contact-layout  { display: grid; grid-template-columns: 1fr 280px; gap: 64px; align-items: start; }
.form-grid-2     { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.event-row          { display: grid; grid-template-columns: 160px 1fr auto; align-items: center; gap: 32px; padding: 24px 0; border-bottom: 1px solid var(--sand); }
.event-row.is-start { align-items: start; }
.event-row-archive  { display: grid; grid-template-columns: 180px 1fr; align-items: baseline; gap: 24px; padding: 8px 0; border-bottom: 1px solid var(--sand); }

/* =====================
   RESPONSIVE – tablet & telefoon
   ===================== */
@media (max-width: 900px) {
  /* --- Navigatie --- */
  nav { padding: 0 20px; height: 64px; }
  .nav-logo { font-size: 18px; letter-spacing: 3px; }
  .nav-cart-mobile {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
    margin-right: 8px;
    color: var(--bark);
    text-decoration: none;
  }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
  }
  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--bark);
    transition: transform 0.3s, opacity 0.3s;
  }
  nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Uitklap-paneel */
  .nav-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(245, 240, 232, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--sand);
    box-shadow: 0 12px 28px rgba(46,30,15,0.10);
    padding: 8px 20px 24px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  }
  nav.nav-open .nav-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-center {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .nav-center > li { width: 100%; }
  .nav-center a {
    display: block;
    font-size: 13px;
    padding: 14px 0;
    border-bottom: 1px solid var(--sand);
  }
  .nav-center a::after { display: none; }
  .nav-divider {
    width: 100%;
    height: 0;
    margin: 0;
    background: none;
  }
  .nav-social-link { padding: 14px 16px 14px 0 !important; display: inline-flex !important; }
  .nav-center li:nth-last-child(2),
  .nav-center li:last-child { display: inline-block; width: auto; }
  .nav-right {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    width: 100%;
    margin-top: 8px;
  }
  .lang-switch { justify-content: center; font-size: 13px; gap: 10px; }
  /* Winkelwagen zit al in de balk, dus in het paneel verbergen */
  .nav-right .nav-shop-btn { display: none; }

  /* --- Hero --- */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 64px;
  }
  .hero-left { padding: 48px 24px 56px; order: 2; }
  .hero-left::after { left: 24px; bottom: 32px; }
  .hero-sub { max-width: none; margin-bottom: 36px; }
  .hero-actions { flex-wrap: wrap; gap: 20px; }
  .hero-stats { padding-top: 36px; gap: 28px; flex-wrap: wrap; }
  .hero-right { order: 1; height: 58vh; min-height: 320px; }
  .hero-right img { padding: 20px; }
  .hero-painting-card { bottom: 20px; max-width: calc(100% - 32px); padding: 16px 18px; }
  .scroll-hint { display: none; }

  /* --- Secties --- */
  .section-wrap { padding: 56px 24px; }
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 36px;
  }
  .section-title { font-size: 30px; }

  /* --- Detailpagina --- */
  .detail-section {
    flex-direction: column;
    padding: 40px 20px;
    gap: 32px;
    align-items: stretch;
  }
  .detail-image-sticky { position: static; max-width: 100%; width: 100%; top: auto; }
  .detail-frame img { max-height: none; width: 100%; }
  .detail-info { width: 100%; }
  .detail-title { font-size: 34px; }
  .price-big { font-size: 36px; }

  /* --- Over de kunstenaar --- */
  .about-section {
    flex-direction: column;
    padding: 56px 24px;
    gap: 32px;
    align-items: stretch;
  }
  .about-image-wrap { order: -1; align-self: center; }
  .about-frame img { max-height: 320px; }
  .about-title { font-size: 32px; }
  .about-text, .about-body { max-width: none; }

  /* --- Agenda + nieuwsbrief --- */
  .events-section { padding: 56px 24px; }
  .events-newsletter-grid { grid-template-columns: 1fr; gap: 12px; }

  /* --- Pagina-grids (winkelwagen, bestellen, contact, agenda) --- */
  .cart-layout,
  .checkout-layout,
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .event-row,
  .event-row.is-start { grid-template-columns: 1fr; gap: 6px; align-items: start; }
  .event-row-archive { grid-template-columns: 1fr; gap: 2px; }

  /* --- Footer --- */
  footer { padding: 40px 24px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 24px; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 560px) {
  .hero-title { font-size: clamp(40px, 12vw, 52px); }
  .detail-title { font-size: 28px; }
  .section-title { font-size: 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-stats { gap: 20px; }
  .stat-number { font-size: 30px; }
}

/* =====================
   COOKIE-TOESTEMMING (Google Analytics)
   ===================== */
.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  background: var(--bark);
  color: var(--cream);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(46, 30, 15, 0.18);
}
/* Respecteer het hidden-attribuut ondanks display:flex hierboven */
.cookie-consent[hidden] { display: none; }
.cookie-consent-text {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(245, 240, 232, 0.85);
  max-width: 640px;
  margin: 0;
}
.cookie-consent-text a {
  color: var(--warm-mid);
  text-decoration: underline;
}
.cookie-consent-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 10px 22px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.cookie-btn-accept {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
}
.cookie-btn-accept:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
}
.cookie-btn-decline {
  background: transparent;
  border-color: rgba(245, 240, 232, 0.4);
  color: var(--cream);
}
.cookie-btn-decline:hover { border-color: var(--cream); }
@media (max-width: 640px) {
  .cookie-consent {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px 20px;
    text-align: center;
  }
  .cookie-consent-actions { justify-content: center; }
  .cookie-btn { flex: 1; }
}