:root {
  --bg: #f3f3f1;
  --surface: #ececea;
  --surface-2: #f8f8f6;
  --card: rgba(255, 255, 255, 0.08);
  --text: #111111;
  --heading: #111111;
  --muted: #737373;
  --muted-2: #a8a8a8;
  --white: #ffffff;
  --line: rgba(17, 17, 17, 0.08);
  --line-light: rgba(255, 255, 255, 0.16);
  --overlay: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(0, 0, 0, 0.24) 42%,
    rgba(0, 0, 0, 0.08) 100%
  );
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 12px 40px rgba(0, 0, 0, 0.08);
  --accent: #111111;
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1280px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 22px 0;
  margin-top: 40px;
  margin-bottom: 40px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 26px;
  background: var(--muted-2);
  border-radius: 50px;
  padding: 8px 12px;
}

.section-tag::before {
  content: "•";
  font-size: 1rem;
  line-height: 1;
}

.section-tag-light {
  color: var(--white);
  margin-bottom: 0;
}

/* HEADER */

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(243, 243, 241, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.04);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #111111 0%, #2a2a2a 100%);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  display: none;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  background: var(--bg);
  border-radius: 100px;
}

.brand-mark::before {
  width: 16px;
  height: 5px;
  left: 4px;
  top: 7px;
  transform: rotate(-42deg);
}

.brand-mark::after {
  width: 16px;
  height: 5px;
  right: 2px;
  bottom: 8px;
  transform: rotate(-42deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 500;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--text);
  color: var(--white);
  place-items: center;
}

#mainNav {
  display: flex;
}

/* BUTTONS */

.btn,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  transition: 0.25s ease;
  white-space: nowrap;
}

.btn {
  padding: 12px 18px;
  background: var(--text);
  color: var(--white);
  font-weight: 600;
  box-shadow: var(--shadow);
}

.btn:hover,
.btn-secondary:hover,
.btn-ghost:hover {
  transform: translateY(-1px);
}

.btn-secondary {
  padding: 10px 10px 10px 18px;
  background: var(--white);
  color: var(--text);
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-ghost {
  padding: 10px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.btn-icon {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--text);
  color: var(--white);
  flex-shrink: 0;
}

/* HERO */

.hero {
  position: relative;
  min-height: 760px;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: none;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--overlay);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 760px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px 24px 28px;
}

.hero-copy {
  max-width: 640px;
  margin-top: 12px;
}

.hero-title {
  font-size: clamp(3.4rem, 7vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 26px;
}

.hero-title .muted-line {
  color: rgba(255, 255, 255, 0.68);
}

.hero-text {
  max-width: 460px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-card {
  margin-left: auto;
  width: min(100%, 360px);
  background: rgba(27, 27, 27, 0.38);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  border-radius: 24px;
  padding: 14px;
  display: flex;
  gap: 14px;
  align-items: center;
}

.hero-card-thumb {
  width: 92px;
  height: 92px;
  border-radius: 18px;
  overflow: hidden;
  flex-shrink: 0;
}

.hero-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  font-weight: 600;
}

.hero-card p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.7);
}

/* CONTENT */

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
  padding: 34px 0 8px;
}

.team-mini {
  position: relative;
}

.team-avatars-overlay {
  position: absolute;
  top: -50px;
  left: 0;
  display: flex;
}

.team-avatars-overlay img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  margin-left: -12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.team-avatars-overlay img:first-child {
  margin-left: 0;
}

.team-mini h3 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.05;
  margin-bottom: 4px;
  letter-spacing: -0.05em;
  font-weight: 500;
}

.team-mini p {
  font-size: 1.7rem;
  line-height: 1.05;
  color: var(--muted-2);
  letter-spacing: -0.05em;
  max-width: 320px;
}

.about-copy h2,
.product-text h2,
.detail-copy h3,
.gallery-copy h3 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
  font-weight: 400;
  margin-bottom: 20px;
}

.about-copy .light,
.product-text .light {
  color: var(--muted-2);
}

.about-copy p,
.product-text .lead,
.detail-copy p,
.gallery-copy p {
  max-width: 580px;
  color: var(--muted);
  font-size: 1rem;
}

.about-copy .btn {
  margin-top: 22px;
  padding: 10px 10px 10px 18px;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 22px;
  align-items: stretch;
}

.product-card,
.product-image,
.detail-card,
.gallery-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.product-card,
.detail-card,
.gallery-card {
  background: linear-gradient(180deg, #efefed 0%, #e9e9e6 100%);
  padding: 28px 26px;
  border: 1px solid rgba(17, 17, 17, 0.04);
  margin-bottom: 10px;
}

.product-card .section-tag {
  margin-bottom: 56px;
}

.product-text .lead {
  margin: 14px 0 28px;
  max-width: 480px;
}

.specs {
  border-top: 1px dashed rgba(17, 17, 17, 0.08);
  border-bottom: 1px dashed rgba(17, 17, 17, 0.08);
  padding: 24px 0;
  margin: 18px 0 24px;
}

.specs-title {
  font-size: 1.15rem;
  margin-bottom: 14px;
  font-weight: 500;
}

.spec-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 11px 0;
  color: var(--text);
  font-size: 0.98rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.05);
}

.spec-row:last-child {
  border-bottom: none;
}

.product-actions,
.gallery-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-image {
  min-height: 650px;
  position: relative;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
}

.product-image img,
.section-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* GALLERY */

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.gallery-card {
  padding: 0;
}

.gallery-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.gallery-copy {
  padding: 24px 24px 22px;
}

.gallery-copy h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

/* DETAILS */

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 12px;
}

.detail-card h3 {
  font-size: 1.5rem;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--line);
  font-size: 0.94rem;
  font-weight: 500;
}

.hidden {
  display: none !important;
}

/* FOOTER */

.footer {
  background: #151515;
  color: var(--white);
  margin: 30px 0 24px;
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.footer-copy h3 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  font-weight: 400;
  margin-bottom: 14px;
}

.footer-copy p {
  color: rgba(255, 255, 255, 0.68);
  max-width: 500px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 22px;
  width: min(100%, 520px);
}

.footer-links h4 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.92);
}

.footer-links a,
.footer-links p {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  margin-bottom: 8px;
  font-size: 0.96rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.92rem;
}

.footer,
.footer * {
  opacity: 1 !important;
  transform: none !important;
}

/* RESPONSIVE */

@media (max-width: 1080px) {
  .about-grid,
  .product-grid,
  .detail-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .product-image {
    min-height: 520px;
  }
}

@media (max-width: 820px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  #mainNav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 82px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 22px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    z-index: 100;
  }

  #mainNav.open {
    display: block;
  }

  #mainNav .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero,
  .hero-inner {
    min-height: 680px;
  }

  .hero-card {
    margin-left: 0;
  }

  .footer {
    padding: 30px 24px 24px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 22px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .section {
    padding: 16px 0;
  }

  .hero-inner {
    padding: 22px 18px 18px;
  }

  .product-card,
  .detail-card,
  .gallery-copy,
  .footer {
    padding: 22px 18px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-copy h3 {
    letter-spacing: -0.05em;
  }
}

/* SCROLL ANIMATION */

.scroll-hidden {
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 1.5s ease,
    transform 0.7s ease;
  will-change: transform, opacity;
}

.scroll-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-hidden {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* WHATSAPP */

.whatsapp-wrapper {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
}

.whatsapp-button {
  width: 64px;
  height: 64px;
  border: none;
  border-radius: 50%;
  background: #25D366;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-button:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
}

.whatsapp-button svg {
  width: 30px;
  height: 30px;
  display: block;
}

.whatsapp-chat {
  display: none;
  flex-direction: column;
  position: absolute;
  right: 0;
  bottom: 82px;
  width: 320px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(18, 140, 126, 0.18);
}

.whatsapp-chat.is-open {
  display: flex;
}

.whatsapp-chat-header {
  display: flex;
  align-items: center;
  padding: 14px;
  background: #25D366;
  color: #ffffff;
}

.whatsapp-chat-header-text h3 {
  margin: 0;
  font-size: 16px;
}

.whatsapp-chat-header-text p {
  margin: 4px 0 0;
  font-size: 13px;
}

.whatsapp-chat-close {
  margin-left: auto;
  border: none;
  background: transparent;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
}

.whatsapp-chat-body {
  padding: 16px;
  background: #f6f6f6;
}

.whatsapp-chat-body p {
  margin: 0;
  background: #ffffff;
  padding: 12px;
  border-radius: 12px;
}

.whatsapp-chat-footer {
  display: flex;
  gap: 8px;
  padding: 12px;
}

#vve-kerkstraat-chat-input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 10px;
}

.whatsapp-send-button {
  border: none;
  background: #25D366;
  color: #fff;
  width: 45px;
  border-radius: 10px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .whatsapp-wrapper {
    right: 16px;
    bottom: 16px;
  }

  .whatsapp-button {
    width: 58px;
    height: 58px;
  }

  .whatsapp-button svg {
    width: 26px;
    height: 26px;
  }
}