/* ============================================================
   KP Keukens — Stylesheet
   ============================================================ */

/* ============================================================
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================================ */
:root {
  /* Kleuren */
  --color-white:       #FFFFFF;
  --color-black:       #1C1C1C;
  --color-gold:        #C9A96E;
  --color-gold-dark:   #B8904F;
  --color-gold-light:  rgba(201, 169, 110, 0.15);
  --color-off-white:   #F5F0EA;
  --color-dark-bg:     #1C1C1C;
  --color-footer-bg:   #111111;
  --color-border:      rgba(28, 28, 28, 0.1);
  --color-border-dark: rgba(255, 255, 255, 0.12);
  --color-text-muted:  rgba(28, 28, 28, 0.55);
  --color-text-muted-dark: rgba(255, 255, 255, 0.55);

  /* Typografie */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing schaal */
  --space-2xs: 4px;
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  40px;
  --space-xl:  64px;
  --space-2xl: 96px;
  --space-3xl: 128px;

  /* Layout */
  --container-max:  1280px;
  --container-pad:  clamp(20px, 5vw, 48px);
  --nav-height:     80px;

  /* Borders */
  --radius-sm: 2px;
  --radius-md: 4px;

  /* Transitions */
  --ease-fast:   0.2s ease;
  --ease-medium: 0.4s ease;
  --ease-slow:   0.6s cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.14);
}


/* ============================================================
   2. CSS RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.75;
  color: var(--color-black);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, button {
  font-family: var(--font-body);
}

textarea {
  resize: vertical;
}


/* ============================================================
   3. TYPOGRAFIE SYSTEEM
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: inherit;
}

h1 { font-size: clamp(2.4rem, 6vw, 5.2rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0.02em; }

p {
  line-height: 1.8;
  color: var(--color-text-muted);
}

strong {
  font-weight: 600;
  color: var(--color-black);
}


/* ============================================================
   4. UTILITY CLASSES
   ============================================================ */

/* Container */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* Section padding */
.section-padding {
  padding-block: var(--space-3xl);
}

/* Section header */
.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-2xl);
}

.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.section-title {
  margin-bottom: var(--space-md);
  color: inherit;
}

.section-intro {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-text-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color var(--ease-fast), border-color var(--ease-fast), color var(--ease-fast), transform var(--ease-fast), box-shadow var(--ease-fast);
  white-space: nowrap;
  text-decoration: none;
  border: 2px solid transparent;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background-color: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
}

.btn-primary:hover {
  background-color: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  border-color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-full {
  width: 100%;
}


/* ============================================================
   5A. HEADER / NAVIGATIE
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  transition: background-color var(--ease-medium), box-shadow var(--ease-medium);
}

.site-header.header-scrolled {
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.02em;
  transition: color var(--ease-fast);
  z-index: 101;
  position: relative;
}

.site-header.header-scrolled .nav-logo {
  color: var(--color-black);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.9);
  transition: color var(--ease-fast);
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-gold);
  transition: width var(--ease-medium);
}

.nav-link:hover,
.nav-link.nav-active {
  color: var(--color-white);
}

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

.site-header.header-scrolled .nav-link {
  color: var(--color-text-muted);
}

.site-header.header-scrolled .nav-link:hover,
.site-header.header-scrolled .nav-link.nav-active {
  color: var(--color-black);
}

/* CTA nav knop */
.nav-cta {
  padding: 10px 22px;
  background-color: var(--color-gold);
  color: var(--color-white) !important;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color var(--ease-fast), transform var(--ease-fast);
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background-color: var(--color-gold-dark);
  transform: translateY(-1px);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  z-index: 101;
  position: relative;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: var(--color-white);
  transition: transform var(--ease-medium), opacity var(--ease-fast), background-color var(--ease-fast);
  transform-origin: center;
}

.site-header.header-scrolled .nav-hamburger span {
  background-color: var(--color-black);
}

/* Hamburger open state */
body.nav-open .nav-hamburger span:nth-child(1) {
  transform: translateY(9.25px) rotate(45deg);
}

body.nav-open .nav-hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

body.nav-open .nav-hamburger span:nth-child(3) {
  transform: translateY(-9.25px) rotate(-45deg);
}

/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 98;
  opacity: 0;
  transition: opacity var(--ease-medium);
}

body.nav-open .nav-overlay {
  opacity: 1;
}


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

.hero-background {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28, 28, 28, 0.3) 0%,
    rgba(28, 28, 28, 0.55) 60%,
    rgba(28, 28, 28, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  padding-inline: var(--container-pad);
  max-width: 900px;
  animation: heroFadeIn 1.2s ease forwards;
}

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

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
  opacity: 0.9;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.7);
  animation: scrollBounce 2.5s ease-in-out infinite;
  transition: color var(--ease-fast);
}

.hero-scroll:hover {
  color: var(--color-white);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}


/* ============================================================
   5C. OVER ONS
   ============================================================ */
.about {
  background-color: var(--color-white);
}

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

.about-image-stack {
  position: relative;
}

.about-img-main {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-sm);
  display: block;
}

.about-accent-box {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background-color: var(--color-gold);
  color: var(--color-white);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  box-shadow: var(--shadow-lg);
}

.accent-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.accent-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
}

.about-text-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.about-lead {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--color-black);
  line-height: 1.75;
  border-left: 2px solid var(--color-gold);
  padding-left: var(--space-md);
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm) var(--space-md);
  margin-block: var(--space-xs);
}

.about-values li {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-black);
}

.value-icon {
  color: var(--color-gold);
  font-size: 0.6rem;
  flex-shrink: 0;
}


/* ============================================================
   5D. COLLECTIES / ONZE KEUKENS
   ============================================================ */
.collections {
  background-color: var(--color-off-white);
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 3vw, 32px);
}

.collection-card {
  background-color: var(--color-white);
  overflow: hidden;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--ease-medium), transform var(--ease-medium);
}

.collection-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ease-slow);
}

.collection-card:hover .card-image-wrapper img {
  transform: scale(1.06);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 28, 28, 0);
  display: flex;
  align-items: flex-end;
  padding: var(--space-md);
  transition: background var(--ease-medium);
}

.collection-card:hover .card-overlay {
  background: rgba(28, 28, 28, 0.45);
}

.card-cta-link {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--ease-medium), transform var(--ease-medium);
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.collection-card:hover .card-cta-link {
  opacity: 1;
  transform: translateY(0);
}

.card-body {
  padding: var(--space-lg) clamp(var(--space-md), 4%, var(--space-lg));
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: var(--space-sm);
}

.card-desc {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}

.card-link {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-gold);
  transition: color var(--ease-fast);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.card-link:hover {
  color: var(--color-gold-dark);
}


/* ============================================================
   5E. GALERIJ / INSPIRATIE
   ============================================================ */
.gallery {
  background-color: var(--color-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 10px;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-sm);
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ease-slow);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* 2 cols × 2 rows — het grote featured blok */
.gallery-item--featured {
  grid-column: span 2;
  grid-row: span 2;
}


/* ============================================================
   5F. DIENSTEN
   ============================================================ */
.services {
  background-color: var(--color-off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 4vw, 48px);
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: clamp(24px, 4%, 36px);
  background-color: var(--color-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--ease-medium), transform var(--ease-medium);
}

.service-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-icon {
  color: var(--color-gold);
  flex-shrink: 0;
}

.service-item h3 {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--color-black);
  line-height: 1.3;
}

.service-item p {
  font-size: 0.9375rem;
  line-height: 1.8;
}


/* ============================================================
   5G. AFSPRAAK / CALENDLY
   ============================================================ */
.appointment {
  background-color: var(--color-white);
}

.calendly-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

/* Placeholder - verwijder zodra Calendly geconfigureerd is */
.calendly-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  background-color: var(--color-off-white);
  padding: var(--space-2xl);
}

.placeholder-inner {
  text-align: center;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.placeholder-inner svg {
  color: var(--color-gold);
}

.placeholder-inner h3 {
  font-family: var(--font-heading);
  color: var(--color-black);
}

.placeholder-inner p {
  font-size: 0.9375rem;
}

.placeholder-inner code {
  background-color: rgba(201, 169, 110, 0.15);
  color: var(--color-gold-dark);
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 0.875em;
  font-family: 'Courier New', monospace;
}

/* De Calendly widget zelf heeft de inline style height instelling,
   maar de wrapper kan de achtergrond matchen */
.calendly-inline-widget {
  background-color: var(--color-white);
}


/* ============================================================
   5H. CONTACT
   ============================================================ */
.contact {
  background-color: var(--color-dark-bg);
  color: var(--color-white);
}

.contact .section-eyebrow {
  color: var(--color-gold);
}

.contact .section-title {
  color: var(--color-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(48px, 8vw, 96px);
  align-items: start;
}

.contact-intro {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: var(--space-xl);
  font-size: 1.0625rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.detail-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(201, 169, 110, 0.15);
  border-radius: 50%;
  color: var(--color-gold);
}

.contact-detail-item strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 6px;
}

.contact-detail-item p,
.contact-detail-item a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.contact-detail-item a:hover {
  color: var(--color-gold);
}

/* Contactformulier */
.contact-form-wrapper {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-md);
  padding: clamp(24px, 5%, 48px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: var(--space-md);
}

.form-group:last-of-type {
  margin-bottom: var(--space-lg);
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.75);
}

.form-group label span {
  color: var(--color-gold);
}

.form-group input,
.form-group textarea {
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  padding: 13px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  transition: border-color var(--ease-fast), box-shadow var(--ease-fast), background-color var(--ease-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

.form-group input.input-error,
.form-group textarea.input-error {
  border-color: #e05c5c;
  box-shadow: 0 0 0 3px rgba(224, 92, 92, 0.15);
}

.field-error {
  font-size: 0.8125rem;
  color: #e07070;
  min-height: 18px;
}

.contact .btn-primary {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  letter-spacing: 0.08em;
}

.contact .btn-primary:hover {
  background-color: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
}

.form-feedback {
  margin-top: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  display: none;
}

.form-feedback.success {
  display: block;
  background-color: rgba(100, 200, 120, 0.15);
  border: 1px solid rgba(100, 200, 120, 0.3);
  color: #7ee8a2;
}

.form-feedback.error {
  display: block;
  background-color: rgba(224, 92, 92, 0.15);
  border: 1px solid rgba(224, 92, 92, 0.3);
  color: #e07070;
}


/* ============================================================
   5I. FOOTER
   ============================================================ */
.site-footer {
  background-color: var(--color-footer-bg);
  color: rgba(255, 255, 255, 0.6);
  padding-block: var(--space-2xl) var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: var(--space-lg);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold);
  display: block;
  margin-bottom: var(--space-md);
  transition: color var(--ease-fast);
}

.footer-logo:hover {
  color: var(--color-gold-dark);
}

.footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  max-width: 320px;
}

.footer-nav h4,
.footer-contact h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-md);
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--ease-fast);
}

.footer-nav a:hover {
  color: var(--color-gold);
}

.footer-contact address {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--space-md);
}

.footer-contact p,
.footer-contact a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}

.footer-contact a:hover {
  color: var(--color-gold);
}

.footer-hours {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4) !important;
  line-height: 1.65;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.5;
}

.footer-tagline {
  font-style: italic;
}


/* ============================================================
   6. ANIMATIES & INTERSECTION OBSERVER
   ============================================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate="fade-in"] {
  transform: translateY(0) scale(0.98);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}


/* ============================================================
   7. MEDIA QUERIES
   ============================================================ */

/* Tablet (max 1024px) */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
  }

  .gallery-item--large {
    grid-column: span 2;
    grid-row: span 2;
  }
}

/* Tablet / Mobiel (max 768px) */
@media (max-width: 768px) {

  :root {
    --space-3xl: 80px;
    --space-2xl: 60px;
    --nav-height: 70px;
  }

  /* Navigatie: hamburger menu */
  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(300px, 80vw);
    background-color: var(--color-white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-lg);
    padding: var(--space-2xl) var(--space-xl);
    z-index: 99;
    transform: translateX(100%);
    transition: transform var(--ease-medium);
    box-shadow: var(--shadow-lg);
  }

  body.nav-open .nav-links {
    transform: translateX(0);
  }

  body.nav-open .nav-overlay {
    display: block;
  }

  .nav-link {
    color: var(--color-black) !important;
    font-size: 1.125rem;
    font-weight: 400;
  }

  .nav-cta {
    margin-top: var(--space-sm);
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Hero */
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .about-accent-box {
    right: 0;
    bottom: -16px;
  }

  /* Collecties */
  .collections-grid {
    grid-template-columns: 1fr;
  }

  /* Galerij */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .gallery-item--featured {
    grid-column: span 2;
    grid-row: span 1;
  }

  /* Diensten */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

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

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xs);
  }
}

/* Klein mobiel (max 480px) */
@media (max-width: 480px) {
  :root {
    --space-3xl: 64px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
}

/* ============================================================
   8. STATS BALK
   ============================================================ */
.stats-bar {
  background-color: var(--color-black);
  padding-block: clamp(28px, 4vw, 44px);
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-inline: clamp(24px, 5vw, 60px);
  text-align: center;
  flex: 1;
  max-width: 200px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}

.stat-plus {
  font-size: 0.7em;
  vertical-align: super;
  line-height: 0;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.stat-divider {
  width: 1px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}


/* ============================================================
   9. TESTIMONIALS
   ============================================================ */
.testimonials {
  background-color: var(--color-off-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 32px);
}

.testimonial-card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: clamp(28px, 4%, 40px);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--color-gold);
  transition: box-shadow var(--ease-medium), transform var(--ease-medium);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.testimonial-stars {
  color: var(--color-gold);
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.75;
  color: var(--color-black);
  flex: 1;
  quotes: "\201E" "\201D";
}

.testimonial-quote::before {
  content: open-quote;
}

.testimonial-quote::after {
  content: close-quote;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-gold);
  color: var(--color-white);
  font-size: 0.8125rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.03em;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-black);
}

.testimonial-author span {
  display: block;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}


/* ============================================================
   10. FLOATING CTA KNOP (MOBIEL)
   ============================================================ */
.floating-cta {
  display: none; /* Alleen zichtbaar op mobiel */
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 89;
  align-items: center;
  gap: 8px;
  background-color: var(--color-gold);
  color: var(--color-white);
  padding: 14px 22px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 28px rgba(201, 169, 110, 0.45);
  transition: background-color var(--ease-fast), transform var(--ease-fast), box-shadow var(--ease-fast), opacity var(--ease-medium);
  opacity: 0;
  pointer-events: none;
  text-decoration: none;
}

.floating-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.floating-cta:hover {
  background-color: var(--color-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(201, 169, 110, 0.5);
}


/* ============================================================
   11. VERBETERINGEN MEDIA QUERIES (NIEUWE SECTIES)
   ============================================================ */

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
  }

  .gallery-item--featured {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media (max-width: 768px) {
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    max-width: none;
    padding-inline: 0;
    padding-block: var(--space-md);
    background-color: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Floating CTA zichtbaar op mobiel */
  .floating-cta {
    display: flex;
  }

  /* Galerij mobiel: 2-col, geen spanning */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery-item--featured {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .gallery-item--featured {
    grid-column: auto;
    grid-row: auto;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Verminderde beweging voorkeur */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-content {
    animation: none;
  }
}
