/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::selection {
  background-color: rgba(192, 168, 104, 0.25);
  color: rgb(235, 228, 218);
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  background-color: rgb(237, 236, 233);
  color: rgb(68, 61, 52);
  overflow-x: hidden;
}

/* ── Nav ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.5rem);
  padding: clamp(1.2rem, 2.5vh, 2rem) clamp(1.5rem, 3vw, 2.5rem);
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1),
              opacity 0.5s cubic-bezier(0.25, 0.1, 0.25, 1),
              background 0.4s ease,
              box-shadow 0.4s ease;
}

.nav--hidden {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}

/* Desktop: links inline, burger hidden */
.nav__burger { display: none; }

.nav__links {
  display: flex;
  gap: clamp(1.2rem, 2.5vw, 2.5rem);
}

.nav__link {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgb(235, 228, 218);
  text-decoration: none;
  text-shadow:
    0 0 2px rgba(0, 0, 0, 1),
    0 1px 4px rgba(0, 0, 0, 0.95),
    0 2px 10px rgba(0, 0, 0, 0.85),
    0 0 24px rgba(0, 0, 0, 0.65),
    0 0 48px rgba(0, 0, 0, 0.35);
  transition: color 0.4s ease, text-shadow 0.4s ease;
}

.nav__link:hover {
  color: rgb(192, 168, 104);
}

/* Scrolled state: espresso links on light backgrounds */
.nav--scrolled {
  background: rgba(237, 236, 233, 0.92);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  backdrop-filter: blur(14px) saturate(1.3);
  border-radius: 0 0 0 12px;
  box-shadow: 0 2px 12px rgba(68, 61, 52, 0.1);
}

.nav--scrolled .nav__link {
  color: rgb(68, 61, 52);
  text-shadow: none;
}

.nav--scrolled .nav__link:hover {
  color: rgb(192, 168, 104);
}

.nav--scrolled .nav__burger span {
  background-color: rgba(68, 61, 52, 0.7);
  filter: none;
}

/* ── Hamburger (mobile) ─────────────────────────── */
@media (max-width: 700px) {
  .nav {
    right: 0;
    left: auto;
  }

  .nav__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 12;
    -webkit-tap-highlight-color: transparent;
  }

  .nav__burger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background-color: rgba(235, 228, 218, 0.85);
    border-radius: 1px;
    transition: transform 0.35s ease, opacity 0.25s ease;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.5));
  }

  /* ≡ → X */
  .nav__burger.is-open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }
  .nav__burger.is-open span:nth-child(2) {
    opacity: 0;
  }
  .nav__burger.is-open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  /* Dropdown panel */
  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    max-width: 85vw;
    height: auto;
    flex-direction: column;
    gap: 0;
    padding: 5rem 2rem 2.5rem;
    background: rgba(52, 48, 44, 0.92);
    -webkit-backdrop-filter: blur(18px) saturate(1.3);
    backdrop-filter: blur(18px) saturate(1.3);
    border-radius: 0 0 0 16px;
    box-shadow: -4px 4px 32px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0s 0.35s;
  }

  .nav__links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0s 0s;
  }

  .nav__links .nav__link {
    display: block;
    padding: 0.9rem 0;
    font-size: 1.05rem;
    letter-spacing: 0.10em;
    color: rgba(235, 228, 218, 0.8);
    border-bottom: 1px solid rgba(192, 168, 104, 0.1);
    text-shadow: none;
  }

  .nav__links .nav__link:last-child {
    border-bottom: none;
  }

  .nav__links .nav__link:hover {
    color: rgb(192, 168, 104);
  }
}

/* ── Hero Section ─────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
  transform: scale(1.05);
  transform-origin: center center;
}

.hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(20, 17, 12, 0.28) 0%, transparent 45%),
    linear-gradient(
      180deg,
      rgba(30, 26, 22, 0.25) 0%,
      rgba(68, 61, 52, 0.08) 12%,
      rgba(68, 61, 52, 0.02) 35%,
      rgba(68, 61, 52, 0.0) 50%,
      rgba(68, 61, 52, 0.20) 70%,
      rgba(68, 61, 52, 0.50) 82%,
      rgb(237, 236, 233) 100%
    );
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 0 1.5rem;
  padding-bottom: 7vh;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* ── Logo ─────────────────────────────────────────── */
.hero__logo {
  width: clamp(180px, 30vw, 280px);
  height: auto;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.3));
  mix-blend-mode: lighten;
  opacity: 0;
  transform: translateY(24px);
  margin-bottom: clamp(1.2rem, 2vw, 2rem);
}

/* ── Company Name ─────────────────────────────────── */
.hero__name {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  letter-spacing: 0.40em;
  text-indent: 0.40em;
  text-transform: uppercase;
  color: rgb(235, 228, 218);
  line-height: 1.1;
  opacity: 0;
  transform: translateY(24px);
}

/* ── Tagline ──────────────────────────────────────── */
.hero__tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.2rem, 2.4vw, 1.75rem);
  letter-spacing: 0.06em;
  color: rgb(240, 235, 225);
  margin-top: clamp(0.85rem, 1.4vw, 1.4rem);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(24px);
}

/* ── Gold Divider ─────────────────────────────────── */
.hero__divider {
  width: 60px;
  height: 1px;
  margin-top: clamp(2.5rem, 4vw, 4rem);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgb(192, 168, 104) 50%,
    transparent 100%
  );
  opacity: 0;
  transform: translateY(24px);
}

/* ── Scroll Indicator ─────────────────────────────── */
.hero__scroll {
  position: absolute;
  bottom: clamp(2rem, 4vh, 3.5rem);
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  opacity: 0;
  animation: fadeInUp 2s cubic-bezier(0.16, 1, 0.3, 1) 5.4s forwards;
  cursor: pointer;
  text-decoration: none;
  padding: 0 20px;
}

.hero__scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgb(192, 168, 104) 100%
  );
  filter: drop-shadow(0 0 3px rgba(192, 168, 104, 0.4));
  animation: scrollBreathe 3.5s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  animation-delay: 6.0s;
}

.hero__scroll-chevron {
  width: 14px;
  height: 8px;
  position: relative;
  margin-top: 3px;
  filter: drop-shadow(0 0 4px rgba(192, 168, 104, 0.5));
  animation: scrollBreathe 3.5s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  animation-delay: 6.0s;
}

.hero__scroll-chevron::before,
.hero__scroll-chevron::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 9px;
  height: 1px;
  background-color: rgb(192, 168, 104);
}

.hero__scroll-chevron::before {
  left: 0;
  transform-origin: bottom left;
  transform: rotate(30deg);
}

.hero__scroll-chevron::after {
  right: 0;
  transform-origin: bottom right;
  transform: rotate(-30deg);
}

.hero__scroll:hover .hero__scroll-line,
.hero__scroll:hover .hero__scroll-chevron::before,
.hero__scroll:hover .hero__scroll-chevron::after {
  opacity: 0.7;
}

@keyframes scrollBreathe {
  0%, 100% { opacity: 0.35; }
  50%      { opacity: 0.7; }
}

.hero__scroll--hidden {
  opacity: 0 !important;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

/* ── Breathing Animation (background) ─────────────── */
@keyframes breathe {
  0%   { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}

.hero__background--animate {
  animation: breathe 30s cubic-bezier(0.25, 0.1, 0.25, 1) infinite alternate;
}

/* ── Fade-in Animation ────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation-name: fadeInUp;
  animation-duration: 2s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  animation-fill-mode: forwards;
}

.fade-in--logo     { animation-delay: 1.0s; }
.fade-in--name     { animation-delay: 2.2s; }
.fade-in--tagline  { animation-delay: 3.4s; }
.fade-in--divider  { animation-delay: 4.2s; }

/* ── Name: settle letter-spacing on reveal ────────── */
@keyframes fadeInName {
  from {
    opacity: 0;
    transform: translateY(24px);
    letter-spacing: 0.40em;
    text-indent: 0.40em;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: 0.28em;
    text-indent: 0.28em;
  }
}

.fade-in--name {
  animation-name: fadeInName;
}

/* ── Diensten & Services Section ─────────────────── */
.diensten {
  background-color: rgb(237, 236, 233);
  padding: clamp(6rem, 10vw, 10rem) 1.5rem clamp(3rem, 5vw, 5rem);
}

.diensten__inner {
  max-width: 1050px;
  margin: 0 auto;
  text-align: center;
}

.diensten__inner::before {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  margin: 0 auto 3.5rem;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgb(192, 168, 104) 50%,
    transparent 100%
  );
  opacity: 0.5;
}

.diensten__supra {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  letter-spacing: 0.35em;
  text-indent: 0.35em;
  text-transform: uppercase;
  color: rgba(68, 61, 52, 0.85);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(24px);
}

.diensten__label {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: 0.04em;
  color: rgb(68, 61, 52);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(24px);
}

.diensten__sub {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  letter-spacing: 0.06em;
  color: rgba(68, 61, 52, 0.85);
  margin-bottom: 3.5rem;
  opacity: 0;
  transform: translateY(24px);
}

.diensten__amp {
  color: rgb(192, 168, 104);
  font-size: 0.8em;
}

/* ── Diensten: Wine-label menu list ─────────────── */
.diensten__menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 520px;
  margin: 0 auto;
}

.diensten__item {
  display: flex;
  align-items: baseline;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  padding: clamp(1.8rem, 3vw, 2.5rem) 0;
  width: 100%;
  text-align: left;
  position: relative;
  opacity: 0;
  transform: translateY(24px);
}

.diensten__number {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: 0.06em;
  color: rgb(192, 168, 104);
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.5s ease;
}

.diensten__body {
  display: flex;
  flex-direction: column;
  position: relative;
}

.diensten__name {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgb(68, 61, 52);
  line-height: 1.3;
  transition: color 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.diensten__arrow {
  position: absolute;
  top: 0.15em;
  right: -2rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2em;
  color: rgb(192, 168, 104);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.diensten__subtitle {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  letter-spacing: 0.06em;
  color: rgba(68, 61, 52, 0.78);
  margin-top: 0.3rem;
}

.diensten__desc {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.7;
  color: rgba(68, 61, 52, 0.85);
  letter-spacing: 0.02em;
  margin-top: 0.5rem;
}

.diensten__list {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0;
}

.diensten__list li {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  letter-spacing: 0.02em;
  color: rgba(68, 61, 52, 0.85);
  line-height: 1.7;
}

.diensten__list li::before {
  content: '\2014\00a0';
  color: rgb(192, 168, 104);
  opacity: 0.85;
}

.diensten__more {
  display: inline-block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  letter-spacing: 0.08em;
  color: rgb(160, 138, 78);
  margin-top: 0.8rem;
  transition: letter-spacing 0.4s ease;
}

.diensten__item:hover .diensten__more {
  letter-spacing: 0.14em;
}

/* ── Gold divider between items ─────────────── */
.diensten__divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgb(192, 168, 104) 50%,
    transparent 100%
  );
  opacity: 0.35;
}

/* ── Hover interaction ─────────────────────── */
.diensten__item:hover .diensten__name {
  color: rgb(192, 168, 104);
}

.diensten__item:hover .diensten__number {
  opacity: 1;
}

.diensten__item:hover .diensten__arrow {
  opacity: 0.7;
  transform: translateX(0);
}

/* ── Focus-visible for accessibility ────────── */
.diensten__item:focus-visible {
  outline: 1px solid rgba(192, 168, 104, 0.45);
  outline-offset: 8px;
}

/* ── Mobile ─────────────────────────────────── */
@media (max-width: 768px) {
  .diensten__menu {
    max-width: 100%;
    padding: 0;
  }

  .diensten__item {
    gap: 1.2rem;
    padding: 1.5rem 0;
  }

  .diensten__number {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .diensten__divider {
    width: 50px;
  }

  .diensten__arrow {
    display: none;
  }
}

/* ── Historie & Ontwikkeling Section ─────────────── */
.historie {
  background-color: rgb(230, 229, 225);
  padding: clamp(3rem, 5vw, 5rem) 1.5rem;
}

.historie__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.historie__rule {
  width: 60px;
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgb(192, 168, 104) 50%,
    transparent 100%
  );
  opacity: 0.5;
}

.historie__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: rgb(68, 61, 52);
  padding: clamp(2.5rem, 4vw, 3.5rem) 0;
  opacity: 0;
}

.historie__amp {
  color: rgb(192, 168, 104);
  font-size: 0.8em;
}

/* ── Timeline structure ─────────────────────────── */
.historie__timeline {
  position: relative;
  margin-top: clamp(2.5rem, 4vw, 4rem);
  padding-bottom: 1rem;
}

/* Vertical gold line (center) */
.historie__line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(192, 168, 104, 0.45) 8%,
    rgba(192, 168, 104, 0.45) 92%,
    transparent 100%
  );
  transform: translateX(-50%);
  transform-origin: top center;
}

/* Each timeline item: 3-column grid */
.historie__item {
  display: grid;
  grid-template-columns: 1fr 24px 1fr;
  gap: 0 clamp(1.5rem, 2.5vw, 2.5rem);
  align-items: start;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
  opacity: 0;
  transform: translateY(24px);
}

.historie__item:last-child {
  margin-bottom: 0;
}

/* Dot on the center line */
.historie__dot {
  grid-column: 2;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(192, 168, 104, 0.6);
  background-color: rgb(230, 229, 225);
  justify-self: center;
  margin-top: 0.35rem;
}

/* Year */
.historie__year {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  letter-spacing: 0.06em;
  color: rgb(192, 168, 104);
  line-height: 1.3;
}

/* Text */
.historie__text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.75;
  color: rgba(68, 61, 52, 0.9);
  letter-spacing: 0.02em;
}

/* ── Left items: content on the left, empty right ── */
.historie__item--left .historie__year {
  grid-column: 1;
  grid-row: 1;
  text-align: right;
}

.historie__item--left .historie__text {
  grid-column: 3;
  grid-row: 1;
  text-align: left;
}

/* ── Right items: empty left, content on the right ── */
.historie__item--right .historie__year {
  grid-column: 3;
  grid-row: 1;
  text-align: left;
}

.historie__item--right .historie__dot {
  grid-column: 2;
  grid-row: 1;
}

.historie__item--right .historie__text {
  grid-column: 1;
  grid-row: 1;
  text-align: right;
}

/* ── Mobile timeline ───────────────────────────── */
@media (max-width: 768px) {
  .historie__rule {
    width: 50px;
  }

  .historie__line {
    left: 12px;
    transform: none;
  }

  .historie__item {
    grid-template-columns: 24px 1fr;
    gap: 0 1.2rem;
    text-align: left;
  }

  .historie__item--left .historie__dot,
  .historie__item--right .historie__dot {
    grid-column: 1;
    grid-row: 1 / 3;
    margin-top: 0.3rem;
  }

  /* All items: year + text stack on the right */
  .historie__item--left .historie__year,
  .historie__item--right .historie__year {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
  }

  .historie__item--left .historie__text,
  .historie__item--right .historie__text {
    grid-column: 2;
    grid-row: 2;
    text-align: left;
    margin-top: 0.3rem;
  }
}

/* ── Normen & Waarden Section ───────────────────── */
.waarden {
  background-color: rgb(230, 229, 225);
  padding: clamp(3rem, 5vw, 5rem) 1.5rem;
}

.waarden__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.waarden__rule {
  width: 60px;
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgb(192, 168, 104) 50%,
    transparent 100%
  );
  opacity: 0.5;
}

.waarden__quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: rgb(68, 61, 52);
  padding: clamp(2.5rem, 4vw, 3.5rem) 0;
  opacity: 0;
}

.waarden__amp {
  color: rgb(192, 168, 104);
  font-size: 0.8em;
}

.waarden__text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.85;
  color: rgba(68, 61, 52, 0.85);
  letter-spacing: 0.02em;
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(24px);
}

/* ── Kennismaking Section ────────────────────────── */
.kennis {
  position: relative;
  min-height: 70vh;
  height: clamp(70vh, 62.5vw, 100vh);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.kennis__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.kennis__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.kennis__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 50% at center, rgba(20, 17, 12, 0.62) 0%, rgba(20, 17, 12, 0.2) 55%, transparent 75%),
    linear-gradient(180deg, rgb(230, 229, 225) 0%, rgba(230, 229, 225, 0) 12%, transparent 25%, transparent 75%, rgba(237, 236, 233, 0) 88%, rgb(237, 236, 233) 100%);
}

.kennis__inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  text-align: center;
  padding: clamp(5rem, 8vw, 8rem) 1.5rem;
}

.kennis__label {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: rgb(255, 252, 246);
  text-shadow:
    0 0 2px rgba(0, 0, 0, 1),
    0 1px 4px rgba(0, 0, 0, 0.95),
    0 2px 12px rgba(0, 0, 0, 0.9),
    0 0 32px rgba(0, 0, 0, 0.7),
    0 0 64px rgba(0, 0, 0, 0.4);
  margin-bottom: 1.8rem;
  opacity: 0;
  transform: translateY(24px);
}

.kennis__text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  line-height: 1.85;
  color: rgb(255, 252, 246);
  text-shadow:
    0 0 2px rgba(0, 0, 0, 1),
    0 1px 4px rgba(0, 0, 0, 0.95),
    0 2px 10px rgba(0, 0, 0, 0.85),
    0 0 28px rgba(0, 0, 0, 0.65),
    0 0 52px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(24px);
}

/* ── Contact Section ──────────────────────────────── */
.contact {
  background-color: rgb(230, 229, 225);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem 4rem;
}

.contact__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.contact__inner::before {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  margin: 0 auto 3rem;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgb(192, 168, 104) 50%,
    transparent 100%
  );
  opacity: 0.5;
}

.contact__disclaimer {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.75;
  letter-spacing: 0.04em;
  color: rgba(68, 61, 52, 0.78);
  max-width: 520px;
  margin-bottom: 0.6rem;
  opacity: 0;
  transform: translateY(24px);
}

.contact__disclaimer + .contact__logo {
  margin-top: 3rem;
}

.contact__logo {
  width: clamp(80px, 15vw, 120px);
  height: auto;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(24px);
}

.contact__label {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: 0.04em;
  color: rgb(68, 61, 52);
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(24px);
}

.contact__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  transform: translateY(24px);
}

.contact__link {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  letter-spacing: 0.10em;
  color: rgb(68, 61, 52);
  text-decoration: none;
  display: inline-block;
  min-height: 48px;
  min-width: 48px;
  line-height: 48px;
  position: relative;
  transition: color 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.contact__icon {
  width: 0.85em;
  height: 0.85em;
  fill: rgb(192, 168, 104);
  vertical-align: -0.05em;
  margin-right: 0.35em;
}

.contact__link:hover {
  color: rgb(192, 168, 104);
}

.contact__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: rgb(192, 168, 104);
  transition: width 0.6s cubic-bezier(0.25, 0.1, 0.25, 1), left 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.contact__link:hover::after,
.contact__link:focus-visible::after {
  width: 100%;
  left: 0;
}

.contact__address {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  letter-spacing: 0.04em;
  color: rgba(68, 61, 52, 0.9);
  opacity: 0;
  transform: translateY(24px);
  font-style: normal;
  margin-top: 1.2rem;
  line-height: 1.6;
}

.contact__address--second {
  margin-top: 0.4rem;
}

.contact__dot {
  color: rgba(192, 168, 104, 0.5);
}

.contact__vat {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  letter-spacing: 0.04em;
  color: rgba(68, 61, 52, 0.7);
  margin-top: 1.5rem;
  opacity: 0;
  transform: translateY(24px);
}

/* ── Reveal animations (IntersectionObserver) ─────── */
[data-reveal].is-visible {
  animation-name: fadeInUp;
  animation-duration: 2s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  animation-fill-mode: forwards;
}

/* Staggered delays: Diensten */
.diensten__label.is-visible        { animation-delay: 0s; }
.diensten__supra.is-visible        { animation-delay: 0.2s; }
.diensten__sub.is-visible          { animation-delay: 0.4s; }
/* nth-child accounts for dividers between items: 1, 3, 5 */
.diensten__item:nth-child(1).is-visible  { animation-delay: 0.6s; }
.diensten__item:nth-child(3).is-visible  { animation-delay: 0.9s; }
.diensten__item:nth-child(5).is-visible  { animation-delay: 1.2s; }

/* Historie: title fade-in, items stagger */
.historie__title.is-visible {
  animation-name: fadeIn;
  animation-duration: 2.5s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

.historie__item:nth-child(2).is-visible  { animation-delay: 0.15s; }
.historie__item:nth-child(3).is-visible  { animation-delay: 0.40s; }
.historie__item:nth-child(4).is-visible  { animation-delay: 0.65s; }
.historie__item:nth-child(5).is-visible  { animation-delay: 0.90s; }

/* Waarden: just a fade, no vertical movement */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.waarden__quote.is-visible {
  animation-name: fadeIn;
  animation-duration: 2.5s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

.waarden__text.is-visible        { animation-delay: 0.3s; }
.waarden__text:nth-child(5).is-visible { animation-delay: 0.6s; }

/* Kennismaking */
.kennis__label.is-visible         { animation-delay: 0s; }
.kennis__text.is-visible          { animation-delay: 0.4s; }

/* Contact */
.contact__disclaimer.is-visible  { animation-delay: 0s; }
.contact__disclaimer:nth-child(2).is-visible { animation-delay: 0.2s; }
.contact__logo.is-visible        { animation-delay: 0.5s; }
.contact__label.is-visible       { animation-delay: 0.9s; }
.contact__links.is-visible       { animation-delay: 1.3s; }
.contact__address.is-visible     { animation-delay: 1.6s; }
.contact__vat.is-visible         { animation-delay: 1.9s; }

@keyframes fadeInUpAddress {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact__address.is-visible {
  animation-name: fadeInUpAddress;
}

/* ── Footer ───────────────────────────────────────── */
.footer {
  background-color: rgb(230, 229, 225);
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(192, 168, 104, 0.15);
}

.footer p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  color: rgba(68, 61, 52, 0.7);
}

.footer a {
  color: rgba(68, 61, 52, 0.7);
  text-decoration: none;
  transition: color 0.4s ease;
}

.footer a:hover {
  color: rgb(192, 168, 104);
}

/* ── Mobile Adjustments ────────────────────────────── */
@media (max-width: 768px) {
  .hero {
    min-height: 600px;
  }

  .hero__background img {
    object-position: center center;
  }

  .hero__logo {
    width: clamp(140px, 35vw, 220px);
  }

  .hero__divider {
    width: 50px;
  }

  .diensten__inner::before,
  .waarden__rule,
  .contact__inner::before {
    width: 50px;
  }

  .hero__name {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
    letter-spacing: 0.18em;
    text-indent: 0.18em;
  }

  @keyframes fadeInName {
    from {
      opacity: 0;
      transform: translateY(24px);
      letter-spacing: 0.25em;
      text-indent: 0.25em;
    }
    to {
      opacity: 1;
      transform: translateY(0);
      letter-spacing: 0.18em;
      text-indent: 0.18em;
    }
  }

  .hero__scroll {
    bottom: clamp(2rem, 5dvh, 3.5rem);
    animation-delay: 3.0s;
  }

  .kennis {
    min-height: 60vh;
  }

  .kennis__background img {
    object-position: center 20%;
  }

  .contact__label {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
  }

  .contact__link {
    letter-spacing: 0.08em;
  }
}

@media (max-height: 480px) {
  .hero__scroll {
    display: none;
  }
}

/* ── Safe area for notched phones ─────────────────── */
@supports (padding: env(safe-area-inset-bottom)) {
  .hero__scroll {
    bottom: calc(clamp(2rem, 4vh, 3.5rem) + env(safe-area-inset-bottom));
  }

  .contact {
    padding-bottom: calc(4rem + env(safe-area-inset-bottom));
  }
}

/* ── Touch device: disable breathing + parallax ───── */
@media (hover: none) and (pointer: coarse) {
  .hero__background {
    animation: none !important;
    transform: scale(1.05) !important;
  }
}

/* ── Focus visible styles ─────────────────────────── */
:focus-visible {
  outline: 1px solid rgba(192, 168, 104, 0.45);
  outline-offset: 6px;
}
