*, *::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(--sand);
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s ease;
}
.hero-right:hover img { transform: scale(1.04); }

.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;
  gap: 10px;
  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(5, 1fr);
  gap: 20px;
  width: 100%;
}

.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(--sand);
  margin-bottom: 12px;
  aspect-ratio: 4/5;
}
.pcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  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: cover;
  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);
}