/*!
Theme Name: Kava Child
Theme URI:
Author: Zemez
Author URI:
Description: Kava child theme.
Template: kava
Version: 1.0.0
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Text Domain: kava-child
*/

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

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

:root {
  --primary: #2d5016;
  --primary-light: #4a7a2e;
  --primary-dark: #1e3a0e;
  --accent: #c8a94e;
  --accent-light: #e8d38e;
  --dark: #1a1a1a;
  --warm: #f5f0e8;
  --cream: #faf9f6;
  --text: #2a2a2a;
  --text-light: #6a6a6a;
  --radius: 2px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--dark);
  background: var(--cream);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 9999;
  padding: 8px 16px;
  background: var(--primary);
  color: #fff;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.wrap--wide {
  max-width: 1400px;
}

/* ——— Header ——— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0 clamp(24px, 5vw, 80px);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}

.site-header.is-scrolled {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(20px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.site-header__inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.site-brand__mark {
  width: 40px;
  height: 40px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #fff;
  font-size: 18px;
}

.site-brand__name {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.site-brand__tag {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.5px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link--active::after {
  width: 100%;
}

.nav-link--active {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-header.is-open .nav-toggle span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.site-header.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .nav-toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(26, 26, 26, 0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  animation: fadeIn 0.3s ease;
}

.mobile-menu[hidden] {
  display: none !important;
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 28px;
  font-family: 'Playfair Display', serif;
}

.mobile-menu .btn {
  margin-top: 16px;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn--primary {
  background: var(--primary);
  color: #fff;
  padding: 16px 36px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.btn--primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(45, 80, 22, 0.3);
}

.btn--sm {
  padding: 12px 28px;
  font-size: 12px;
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  padding: 15px 35px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--accent {
  background: var(--accent);
  color: var(--dark);
}

.btn--ghost {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

/* ——— Typography ——— */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1.5px;
  background: var(--accent);
}

.section-label--center {
  justify-content: center;
}

.heading-lg {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--dark);
  letter-spacing: -0.5px;
}

.heading-md {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
}

/* ——— Animations ——— */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes lineGrow {
  from {
    width: 0;
  }
  to {
    width: 60px;
  }
}

.visible .anim-fade {
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.visible .anim-fade-d1 {
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
  opacity: 0;
}

.visible .anim-fade-d2 {
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
  opacity: 0;
}

.visible .anim-fade-d3 {
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
  opacity: 0;
}

.visible .anim-fade-d4 {
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
  opacity: 0;
}

.visible .anim-slide {
  animation: slideRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.visible .anim-scale {
  animation: scaleIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.vis .anim-f {
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.vis .anim-f1 {
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
  opacity: 0;
}

.vis .anim-f2 {
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
  opacity: 0;
}

.vis .anim-f3 {
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
  opacity: 0;
}

.vis .anim-s {
  animation: slideRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.vis .af {
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.vis .af1 {
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
  opacity: 0;
}

.vis .af2 {
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
  opacity: 0;
}

.vis .as {
  animation: slideRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ——— Home: Hero ——— */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(30, 58, 14, 0.92) 0%, rgba(26, 26, 26, 0.88) 100%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='g' width='60' height='60' patternUnits='userSpaceOnUse'%3E%3Cpath d='M0 30h60M30 0v60' stroke='rgba(255,255,255,0.03)' stroke-width='0.5'/%3E%3C/pattern%3E%3C/defs%3E%3Crect fill='url(%23g)' width='60' height='60'/%3E%3C/svg%3E");
  background-size: cover, 60px 60px;
  overflow: hidden;
}

.hero__deco {
  position: absolute;
  border: 1px solid rgba(200, 169, 78, 0.1);
  pointer-events: none;
}

.hero__deco--1 {
  top: 15%;
  right: 8%;
  width: 300px;
  height: 300px;
}

.hero__deco--2 {
  bottom: 20%;
  right: 15%;
  width: 150px;
  height: 150px;
  border-color: rgba(200, 169, 78, 0.08);
}

.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px clamp(24px, 5vw, 80px) 80px;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 20px;
  border: 1px solid rgba(200, 169, 78, 0.3);
  margin-bottom: 32px;
  animation: fadeUp 0.8s ease;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.hero__badge span {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 6vw, 72px);
  color: #fff;
  line-height: 1.08;
  font-weight: 600;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease 0.1s both;
}

.hero h1 .accent {
  color: var(--accent);
}

.hero__lead {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 48px;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.3s both;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
  animation: fadeUp 0.8s ease 0.5s both;
}

.stat-item {
  text-align: center;
  padding: 32px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item__num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
}

.stat-item__lbl {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeIn 1s ease 1s both;
}

.hero__scroll span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(200, 169, 78, 0.6), transparent);
}

/* ——— Service cards ——— */
.service-card {
  padding: 40px 32px;
  background: #fff;
  border: 1px solid #e8e4dc;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--primary);
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover,
.service-card.active {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.service-card:hover::before,
.service-card.active::before {
  height: 100%;
}

.service-card.active {
  border-color: var(--primary);
  background: #fafdf7;
}

.service-card__icon {
  font-size: 36px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark);
}

.service-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--warm);
  font-size: 12px;
  font-weight: 500;
  color: var(--primary-dark);
  letter-spacing: 0.3px;
  margin: 0 8px 8px 0;
}

/* ——— Project cards ——— */
.project-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  display: flex;
  align-items: flex-end;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover {
  transform: scale(1.02);
}

.project-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.85) 100%);
  transition: background 0.4s ease;
}

.project-card:hover .overlay {
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.9) 100%);
}

.project-card__grid {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255, 255, 255, 0.5) 39px, rgba(255, 255, 255, 0.5) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255, 255, 255, 0.5) 39px, rgba(255, 255, 255, 0.5) 40px);
}

/* ——— Reviews ——— */
.review-card {
  background: #fff;
  padding: 40px;
  border: 1px solid #e8e4dc;
  transition: all 0.4s ease;
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
}

.review-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

/* ——— Forms ——— */
.input-field {
  width: 100%;
  padding: 16px 0;
  border: none;
  border-bottom: 1.5px solid #d4d0c8;
  background: transparent;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  color: var(--dark);
  transition: border-color 0.3s ease;
  outline: none;
}

.input-field:focus {
  border-color: var(--primary);
}

.input-field::placeholder {
  color: #aaa;
}

label.field-label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.filter-btn {
  padding: 10px 24px;
  border: 1.5px solid #d4d0c8;
  background: transparent;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-light);
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-btn.active,
.filter-btn.on {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ——— Footer ——— */
.site-footer--full {
  background: var(--dark);
  color: #fff;
  padding: 80px clamp(24px, 5vw, 80px) 32px;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-lead {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.8;
  max-width: 300px;
}

.footer-heading {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  display: block;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--accent);
}

.footer-contact {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 2;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 13px;
}

.footer-meta {
  color: rgba(255, 255, 255, 0.25);
  font-size: 12px;
}

.site-footer--simple {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.35);
  padding: 40px clamp(24px, 5vw, 80px);
  text-align: center;
  font-size: 13px;
}

/* ——— Page hero (inner pages) ——— */
.page-hero {
  padding-top: 80px;
  background: linear-gradient(135deg, rgba(30, 58, 14, 0.93), rgba(26, 26, 26, 0.88));
  position: relative;
}

.page-hero--diensten {
  background: linear-gradient(135deg, rgba(30, 58, 14, 0.93) 0%, rgba(26, 58, 14, 0.85) 50%, rgba(26, 26, 26, 0.9) 100%);
}

.page-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px clamp(24px, 5vw, 80px) 100px;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.breadcrumb .current {
  color: var(--accent);
}

.wave-bottom {
  height: 60px;
  background: var(--cream);
  margin-top: -1px;
}

.wave-bottom svg {
  display: block;
  width: 100%;
  margin-top: -60px;
}

/* ——— Contact page ——— */
.contact-card {
  padding: 28px;
  border: 1px solid #e8e4dc;
  background: #fff;
  transition: all 0.3s;
}

.contact-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

.inp,
.sel {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1.5px solid #d4d0c8;
  background: transparent;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  color: var(--dark);
  outline: none;
}

.inp:focus,
.sel:focus {
  border-color: var(--primary);
}

.sel {
  cursor: pointer;
  appearance: none;
}

.faq-item {
  border-bottom: 1px solid #e8e4dc;
  overflow: hidden;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  transition: color 0.3s;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font: inherit;
}

.faq-q:hover {
  color: var(--primary);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.is-open .faq-a {
  max-height: 500px;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.thanks-box {
  padding: 48px;
  background: #f0f7eb;
  border: 1px solid var(--primary);
  text-align: center;
}

/* ——— Diensten ——— */
.quick-nav-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  background: #fff;
  border: 1px solid #e8e4dc;
  padding: 16px;
}

.quick-nav-grid a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid transparent;
  color: inherit;
}

.quick-nav-grid a:hover,
.quick-nav-grid a:focus {
  background: var(--warm);
  border-color: var(--primary);
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid #e8e4dc;
  background: #fff;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.service-block:hover {
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.feature-card {
  padding: 24px;
  border: 1px solid #f0ece4;
  transition: all 0.3s ease;
  background: #faf9f6;
}

.feature-card:hover {
  border-color: var(--primary);
  background: #fafdf7;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: gap 0.3s ease;
}

.cta-link:hover {
  gap: 14px;
}

/* ——— Projecten ——— */
.proj-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.proj-card:hover {
  transform: scale(1.02);
}

.proj-card .ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.85) 100%);
  transition: background 0.4s;
}

.proj-card:hover .ov {
  background: linear-gradient(180deg, transparent 10%, rgba(0, 0, 0, 0.92) 100%);
}

.proj-card .view-btn {
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s;
}

.proj-card:hover .view-btn {
  opacity: 1;
  transform: translateY(0);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.3s ease;
}

.modal-overlay[hidden] {
  display: none !important;
}

.modal-box {
  background: #fff;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-cat {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 40px);
  color: #fff;
  font-weight: 600;
  margin-bottom: 8px;
}

.modal-loc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.modal-stat {
  padding: 20px 24px;
  text-align: center;
  border-right: 1px solid #e8e4dc;
}

.modal-stat:last-child {
  border-right: none;
}

.modal-stat-l {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 6px;
  font-weight: 600;
}

.modal-stat-v {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
}

.modal-h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
}

.modal-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 32px;
}

.modal-scope-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--warm);
  margin-bottom: 8px;
}

.modal-cta-box {
  padding: 24px;
  background: #f0f7eb;
  border: 1px solid rgba(45, 80, 22, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.modal-cta-t {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}

.modal-cta-s {
  font-size: 14px;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .modal-stats {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .modal-stat {
    border-right: none !important;
    border-bottom: 1px solid #e8e4dc;
  }
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 20px;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* ——— Over ons ——— */
.team-card {
  background: #fff;
  border: 1px solid #e8e4dc;
  overflow: hidden;
  transition: all 0.4s ease;
}

.team-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.tl-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 3px solid var(--primary);
  background: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.tl-dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

.value-card {
  padding: 40px 32px;
  background: #fff;
  border: 1px solid #e8e4dc;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: width 0.4s;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.value-card:hover::before {
  width: 100%;
}

/* ——— Grids ——— */
.grid-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

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

.grid-contact {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 5vw, 80px);
}

.section-pad {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 5vw, 80px);
}

.bg-warm {
  background: var(--warm);
}

.cta-banner {
  background: var(--primary-dark);
  padding: 80px clamp(24px, 5vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='p' width='100' height='100' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='50' cy='50' r='1' fill='white'/%3E%3C/pattern%3E%3C/defs%3E%3Crect fill='url(%23p)' width='100' height='100'/%3E%3C/svg%3E");
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.about-visual {
  aspect-ratio: 4/5;
  background: var(--primary-dark);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 36px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.check-mark {
  width: 20px;
  height: 20px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ——— Responsive ——— */
@media (max-width: 768px) {
  .nav-desktop {
    display: none !important;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .grid-services,
  .grid-projects,
  .grid-reviews {
    grid-template-columns: 1fr !important;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .grid-contact {
    grid-template-columns: 1fr !important;
  }

  .about-split {
    grid-template-columns: 1fr !important;
  }

  .quick-nav-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .service-block {
    grid-template-columns: 1fr !important;
  }

  .features-grid {
    grid-template-columns: 1fr !important;
  }

  .proj-grid {
    grid-template-columns: 1fr !important;
  }

  .modal-grid {
    grid-template-columns: 1fr !important;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .values-grid {
    grid-template-columns: 1fr !important;
  }

  .cert-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .info-cards {
    grid-template-columns: 1fr !important;
  }

  .tl-desktop {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .tl-mobile {
    display: none !important;
  }
}
