/* === HERO === */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-replay {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--color-border-gold);
  color: var(--color-gold);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.4s var(--ease-fluid), transform 0.4s var(--ease-fluid), background 0.3s;
  pointer-events: none;
  z-index: 5;
}

.hero-replay.visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.hero-replay:hover {
  background: rgba(200, 169, 126, 0.3);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.6) 100%);
}

/* Hero blobs (local to hero, not fixed) */
.hero-blob {
  position: absolute;
  border-radius: var(--radius-organic-1);
  filter: blur(80px);
  z-index: 1;
  animation: blobMorph 20s var(--ease-fluid) infinite, blobPulse 8s ease-in-out infinite;
}

.hero-blob-1 {
  width: 350px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(200,169,126,0.15), transparent 70%);
  top: 15%;
  right: 10%;
  animation-delay: -3s;
}

.hero-blob-2 {
  width: 280px;
  height: 280px;
  background: radial-gradient(ellipse, rgba(200,169,126,0.10), transparent 70%);
  bottom: 20%;
  left: 5%;
  animation-delay: -8s;
  animation-duration: 25s, 10s;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transform: translate(
    calc((var(--mouse-x) - 0.5) * 8px),
    calc((var(--mouse-y) - 0.5) * 6px)
  );
  transition: transform 0.3s ease-out;
}

.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  line-height: 1.1;
}

.hero-sub {
  font-family: 'Cinzel', serif;
  font-size: clamp(12px, 1.8vw, 18px);
  font-weight: 400;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}

/* === ONS VERHAAL === */
.section-verhaal {
  padding: 100px 48px 80px;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
}

.section-verhaal > h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 64px;
}

.verhaal-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
}

.verhaal-left {
  position: relative;
  padding-left: 40px;
}

.verhaal-left::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 24px;
  border: 1.5px solid rgba(200,169,126,0.2);
  border-right: none;
  border-radius: 40% 0 0 60% / 45% 0 0 55%;
  transition: border-radius 3s var(--ease-fluid);
}

.verhaal-left:hover::before {
  border-radius: 55% 0 0 45% / 60% 0 0 40%;
}

.verhaal-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: .05em;
  margin-bottom: 16px;
}

.verhaal-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--color-text-muted);
}

/* Center organic images */
.verhaal-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 0 12px;
}

.verhaal-circle {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border: 1px solid var(--color-border-gold);
  animation: blobMorph 30s var(--ease-fluid) infinite;
}

.verhaal-circle:nth-child(2) {
  animation-delay: -15s;
}

/* Right column */
.verhaal-right .verhaal-label { text-align: right; }
.verhaal-right .verhaal-text  { text-align: right; }

/* === ONZE KEUKEN === */
.section-keuken {
  padding: 40px 48px 100px;
  max-width: 1320px;
  margin: 0 auto;
}

.section-keuken > h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 48px;
}

.keuken-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.keuken-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  border-radius: var(--radius-card);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: border-radius var(--duration-slow) var(--ease-fluid),
              border-color var(--duration-normal) var(--ease-fluid),
              box-shadow var(--duration-normal) var(--ease-fluid);
}

.keuken-card:nth-child(1) { animation-delay: 0s; }
.keuken-card:nth-child(2) { animation-delay: 0.8s; }
.keuken-card:nth-child(3) { animation-delay: 1.6s; }
.keuken-card:nth-child(4) { animation-delay: 2.4s; }

.keuken-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-fluid);
}

.keuken-card:hover {
  border-radius: var(--radius-organic-2);
  border-color: rgba(200,169,126,0.3);
  box-shadow: 0 0 40px rgba(200,169,126,0.1);
}

.keuken-card:hover img {
  transform: scale(1.06);
}

.keuken-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 100%, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  border-radius: inherit;
  transition: border-radius var(--duration-slow) var(--ease-fluid);
}

.keuken-card span {
  position: absolute;
  bottom: 28px;
  left: 24px;
  right: 24px;
  z-index: 2;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-text);
}

/* === HERITAGE SECTION === */
.section-heritage {
  padding: 100px 48px 80px;
  max-width: 1320px;
  margin: 0 auto;
  text-align: center;
}

.section-heritage > h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.heritage-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--color-gold);
  margin-bottom: 60px;
}

.heritage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.heritage-card {
  padding: 16px;
  text-align: center;
}

.heritage-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  margin-bottom: 20px;
}

.heritage-label {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-gold);
}

.heritage-comparison {
  max-width: 900px;
  margin: 60px auto 0;
  position: relative;
}

.heritage-video-wrap {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.heritage-video-wrap video {
  width: 100%;
  display: block;
  border-radius: var(--radius-card);
}

.heritage-replay {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--color-border-gold);
  color: var(--color-gold);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.4s var(--ease-fluid), transform 0.4s var(--ease-fluid), background 0.3s;
  pointer-events: none;
  z-index: 5;
}

.heritage-replay.visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.heritage-replay:hover {
  background: rgba(200, 169, 126, 0.3);
}

.heritage-caption {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--color-text-muted);
  margin-top: 20px;
  line-height: 1.6;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .section-verhaal,
  .section-keuken {
    padding-left: 24px;
    padding-right: 24px;
  }

  .verhaal-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .verhaal-left { padding-left: 32px; }
  .verhaal-center { flex-direction: row; justify-content: center; }
  .verhaal-right .verhaal-label,
  .verhaal-right .verhaal-text { text-align: left; }

  .keuken-row { grid-template-columns: 1fr 1fr; }

  .heritage-grid { grid-template-columns: 1fr; gap: 20px; }
  .section-heritage { padding: 60px 24px; }
}

@media (max-width: 560px) {
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-content { transform: none !important; }
  .keuken-row { grid-template-columns: 1fr; }
  .hero-blob { display: none; }

  .section-heritage { padding: 40px 16px; }
  .heritage-card img { height: 200px; }
}
