/* ============================================================
   LINNENVERHUREN.NL — Warm Artisanaal Design System
   Kleuren: Teal #2a6b7c, Ivoor #faf7f2, Goud #c9a84c, Donkergroen #1a3a3a
   Typografie: Playfair Display (display) + DM Sans (body)
   ============================================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: #2c2c2c;
  background: #faf7f2;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ===== SCREEN READER ONLY ===== */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ===== CSS VARIABLES ===== */
:root {
  --teal: #2a6b7c;
  --teal-dark: #1e5060;
  --teal-light: #3d8a9e;
  --ivory: #faf7f2;
  --ivory-dark: #f0ebe2;
  --gold: #c9a84c;
  --gold-light: #e2c97e;
  --dark: #1a3a3a;
  --dark-mid: #2c3e3e;
  --text: #2c2c2c;
  --text-muted: #6b7280;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.14), 0 4px 12px rgba(0,0,0,0.08);
  --radius: 4px;
  --radius-lg: 8px;
  --transition: 0.22s cubic-bezier(0.23, 1, 0.32, 1);
  --max-w: 1240px;
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) { .container { padding: 0 2.5rem; } }
@media (min-width: 1200px) { .container { padding: 0 3rem; } }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }

/* ===== SECTION LABELS ===== */
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}
.section-label.light { color: rgba(255,255,255,0.7); }
.section-title { margin-bottom: 1.25rem; }
.section-title em { font-style: italic; color: var(--teal); }
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--gold-light); }
.section-body { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 1rem; max-width: 560px; }
.section-center { text-align: center; margin-bottom: 3.5rem; }
.section-center .section-body { margin: 0 auto 1rem; }
.section-header-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 3rem; flex-wrap: wrap; }

/* ===== ORNAMENTS ===== */
.section-ornament, .stats-ornament, .testimonial-ornament, .cta-ornament {
  display: flex; align-items: center; gap: 0.75rem;
  justify-content: center; margin-bottom: 1.5rem;
}
.ornament-line { width: 48px; height: 1px; background: var(--gold); opacity: 0.6; }
.ornament-diamond {
  width: 7px; height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}
.hero-rule { display: flex; align-items: center; gap: 0.75rem; margin: 1.25rem 0; }
.rule-line { width: 48px; height: 1px; background: rgba(255,255,255,0.5); }
.rule-diamond { width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); }

/* ===== SECTION BACKGROUNDS ===== */
.section-light { background: var(--ivory); }
.section-muted { background: var(--ivory-dark); }
.section-dark { background: var(--dark); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--teal); color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); }
.btn-gold {
  background: var(--gold); color: var(--dark);
  border-color: var(--gold);
}
.btn-gold:hover { background: #b8962e; border-color: #b8962e; }
.btn-ghost {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.85); }
.btn-ghost-light {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); }
.btn-full { width: 100%; justify-content: center; }

/* ===== LINKS ===== */
.link-arrow {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.9rem; font-weight: 600; color: var(--teal);
  text-decoration: none; transition: gap var(--transition);
}
.link-arrow:hover { gap: 0.7rem; }
.link-arrow.light { color: rgba(255,255,255,0.8); }
.link-arrow.light:hover { color: var(--white); }

/* ===== CHECK LIST ===== */
.check-list { margin: 1.25rem 0 1.75rem; display: flex; flex-direction: column; gap: 0.6rem; }
.check-list li {
  display: flex; align-items: flex-start; gap: 0.65rem;
  font-size: 0.95rem; color: var(--text-muted);
}
.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px; margin-top: 2px;
  background: var(--teal);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* ===== BREADCRUMB ===== */
.breadcrumb { margin-bottom: 1.5rem; }
.breadcrumb ol { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.breadcrumb li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: rgba(255,255,255,0.65); }
.breadcrumb li::after { content: '›'; }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { color: rgba(255,255,255,0.8); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb li[aria-current="page"] { color: rgba(255,255,255,0.9); }

/* ===== HEADER / NAVBAR ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 0;
}
.site-header.scrolled {
  background: rgba(250,247,242,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center; gap: 1.5rem;
  height: 80px; transition: height var(--transition);
}
.site-header.scrolled .header-inner { height: 68px; }
.logo { flex-shrink: 0; display: flex; align-items: center; }
.logo img { height: 58px; width: auto; transition: height var(--transition); }
.site-header.scrolled .logo img { height: 48px; }
.main-nav { flex: 1; }
.nav-list { display: flex; align-items: center; gap: 0.25rem; justify-content: center; }
.nav-link {
  padding: 0.5rem 0.85rem;
  font-size: 0.88rem; font-weight: 500;
  color: var(--white);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 2px; left: 0.85rem; right: 0.85rem;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:hover, .nav-link.active { color: var(--white); }
.site-header.scrolled .nav-link { color: var(--dark); }
.site-header.scrolled .nav-link:hover, .site-header.scrolled .nav-link.active { color: var(--teal); }
.site-header.scrolled .nav-link::after { background: var(--teal); }
.header-actions { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.header-phone {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.85rem; font-weight: 500; color: var(--white);
  transition: color var(--transition);
}
.header-phone:hover { color: var(--gold-light); }
.site-header.scrolled .header-phone { color: var(--teal); }
.site-header.scrolled .header-phone:hover { color: var(--teal-dark); }
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px; padding: 6px;
  background: none; border: none; cursor: pointer;
}
.hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}
.site-header.scrolled .hamburger span { background: var(--dark); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  background: var(--ivory);
  border-top: 1px solid var(--ivory-dark);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 0.25rem; margin-bottom: 1.5rem; }
.mobile-menu a {
  display: block; padding: 0.65rem 0.75rem;
  font-size: 1rem; font-weight: 500; color: var(--dark);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.mobile-menu a:hover, .mobile-menu a.active { background: var(--ivory-dark); color: var(--teal); }
.mobile-phone { display: block; text-align: center; margin-top: 1rem; color: var(--teal); font-weight: 600; font-size: 1.05rem; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,58,58,0.82) 0%, rgba(42,107,124,0.55) 60%, rgba(0,0,0,0.35) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 10rem 0 5rem;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.9);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.45rem 1rem; border-radius: 2rem;
  margin-bottom: 1.75rem;
}
.badge-dot { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; }
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 700; color: var(--white);
  line-height: 1.1; margin-bottom: 0;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.82); max-width: 520px; margin-bottom: 2rem; }
.hero-ctas { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-trust { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.hero-trust li { display: flex; align-items: center; gap: 0.45rem; font-size: 0.82rem; color: rgba(255,255,255,0.75); font-weight: 500; }
.trust-dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
  color: rgba(255,255,255,0.55); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== STATS SECTION ===== */
.stats-section { background: var(--dark); padding: 4rem 0; }
.stats-section.stats-light { background: var(--ivory-dark); }
.stats-ornament { margin-bottom: 2.5rem; }
.stats-ornament .ornament-line, .stats-ornament .ornament-diamond { opacity: 0.4; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700; color: var(--white);
  line-height: 1;
}
.stats-light .stat-number { color: var(--dark); }
.stat-suffix { font-size: 0.65em; color: var(--gold); }
.stats-light .stat-suffix { color: var(--teal); }
.stat-rule { width: 32px; height: 1px; background: var(--gold); margin: 0.75rem auto; opacity: 0.6; }
.stats-light .stat-rule { background: var(--teal); }
.stat-label { font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.6); letter-spacing: 0.05em; }
.stats-light .stat-label { color: var(--text-muted); }

/* ===== USP SECTION ===== */
.usp-section { padding: 6rem 0; }
.usp-inner { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 900px) { .usp-inner { grid-template-columns: 1fr 1fr; } }
.usp-image { position: relative; }
.img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.img-frame img { width: 100%; height: 500px; object-fit: cover; }
.testimonial-card {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
  max-width: 280px;
  border-left: 3px solid var(--gold);
}
.testimonial-card .stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 0.5rem; }
.testimonial-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.5rem; font-style: italic; }
.testimonial-card strong { font-size: 0.78rem; color: var(--teal); font-weight: 600; }

/* ===== SERVICES SECTION ===== */
.services-section { padding: 6rem 0; }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }
.service-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0; transition: opacity var(--transition);
}
.service-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); transform: translateY(-3px); }
.service-card:hover::before { opacity: 1; }
.card-num { font-size: 0.7rem; font-weight: 700; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 1rem; opacity: 0.7; }
.card-icon { color: var(--gold); margin-bottom: 1rem; }
.service-card h3 { font-size: 1.1rem; color: var(--white); margin-bottom: 0.75rem; }
.service-card p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* ===== SECTORS SECTION ===== */
.sectors-section { padding: 6rem 0; }
.sectors-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .sectors-grid { grid-template-columns: repeat(3, 1fr); } }
.sector-card {
  display: block; position: relative; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  aspect-ratio: 3/4;
}
.sector-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.sector-img-wrap { position: absolute; inset: 0; }
.sector-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.sector-card:hover .sector-img-wrap img { transform: scale(1.04); }
.sector-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,58,58,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.sector-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2rem 1.5rem;
}
.sector-content h3 { font-size: 1.4rem; color: var(--white); margin-bottom: 0.5rem; }
.sector-content p { font-size: 0.88rem; color: rgba(255,255,255,0.75); margin-bottom: 0.75rem; }
.sector-cta { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.82rem; font-weight: 600; color: var(--gold-light); }

/* ===== PROCESS SECTION ===== */
.process-section { padding: 6rem 0; }
.process-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 640px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.process-step:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.step-top-accent {
  position: absolute; top: 0; left: 1.5rem; right: 1.5rem; height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  border-radius: 0 0 2px 2px;
}
.step-num { font-size: 2.5rem; font-family: 'Playfair Display', serif; font-weight: 700; color: var(--teal); opacity: 0.15; line-height: 1; margin-bottom: 0.75rem; }
.process-step h3 { font-size: 1.05rem; margin-bottom: 0.6rem; color: var(--dark); }
.process-step p { font-size: 0.9rem; color: var(--text-muted); }
.step-arrow { display: none; }

/* ===== TESTIMONIAL SECTION ===== */
.testimonial-section { padding: 6rem 0; }
.testimonial-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.stars-large { font-size: 1.4rem; color: var(--gold); margin-bottom: 1rem; letter-spacing: 0.1em; }
.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-style: italic; color: var(--dark);
  line-height: 1.6; margin-bottom: 2rem;
  quotes: "\201C" "\201D";
}
.testimonial-quote::before { content: open-quote; color: var(--gold); }
.testimonial-quote::after { content: close-quote; color: var(--gold); }
.testimonial-author { display: flex; align-items: center; gap: 1rem; justify-content: center; }
.author-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--teal); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700;
}
.testimonial-author strong { display: block; font-weight: 600; color: var(--dark); }
.testimonial-author span { font-size: 0.85rem; color: var(--text-muted); }

/* ===== CTA SECTION ===== */
.cta-section { position: relative; padding: 7rem 0; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; }
.cta-bg-img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,58,58,0.88) 0%, rgba(42,107,124,0.75) 100%);
}
.cta-content { position: relative; z-index: 2; text-align: center; max-width: 680px; margin: 0 auto; }
.cta-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--white); margin-bottom: 1rem; }
.cta-subtitle { font-size: 1.05rem; color: rgba(255,255,255,0.8); margin-bottom: 2.5rem; }
.cta-buttons { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.75); }
.footer-inner {
  display: grid; grid-template-columns: 1fr;
  gap: 3rem; padding: 5rem 0 3rem;
}
@media (min-width: 640px) { .footer-inner { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin: 1.25rem 0 1.5rem; max-width: 280px; }
.social-links { display: flex; gap: 0.75rem; }
.social-links a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.social-links a:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }
.footer-nav h3 { font-family: 'DM Sans', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1.25rem; }
.footer-nav ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav a { font-size: 0.9rem; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-nav a:hover { color: var(--white); }
.footer-contact h3 { font-family: 'DM Sans', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1.25rem; }
.footer-contact address { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact p { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; }
.footer-contact svg { flex-shrink: 0; margin-top: 2px; opacity: 0.5; }
.footer-contact a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-contact a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.5rem 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom nav { display: flex; gap: 1.5rem; }
.footer-bottom a { font-size: 0.82rem; color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--teal-dark) 60%, var(--teal) 100%);
  padding: 9rem 0 5rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: 1rem; }
.page-hero-title em { font-style: italic; color: var(--gold-light); }
.page-hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.75); max-width: 560px; }

/* ===== DIENST SECTIONS ===== */
.dienst-section { padding: 6rem 0; }
.dienst-inner { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 900px) { .dienst-inner { grid-template-columns: 1fr 1fr; } }
.dienst-inner.reverse .dienst-image { order: -1; }
@media (min-width: 900px) { .dienst-inner.reverse .dienst-image { order: 0; } }
.dienst-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.dienst-image img { width: 100%; height: 420px; object-fit: cover; transition: transform 0.5s ease; }
.dienst-image:hover img { transform: scale(1.03); }

/* ===== VALUES SECTION ===== */
.values-section { padding: 6rem 0; }
.values-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }
.value-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
}
.value-card::before {
  content: ''; position: absolute; top: 0; left: 1.5rem; right: 1.5rem; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.value-num { font-size: 2.5rem; font-family: 'Playfair Display', serif; font-weight: 700; color: var(--gold); opacity: 0.2; line-height: 1; margin-bottom: 0.75rem; }
.value-card h3 { font-size: 1.1rem; color: var(--white); margin-bottom: 0.6rem; }
.value-card p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* ===== COLLECTIE SECTION ===== */
.collectie-section { padding: 6rem 0; }
.product-table-wrap { overflow-x: auto; margin: 1.5rem 0 2rem; }
.product-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.product-table th { background: var(--teal); color: var(--white); padding: 0.75rem 1rem; text-align: left; font-weight: 600; }
.product-table td { padding: 0.7rem 1rem; border-bottom: 1px solid var(--ivory-dark); color: var(--text-muted); }
.product-table tr:last-child td { border-bottom: none; }
.product-table tr:hover td { background: rgba(42,107,124,0.04); }

/* ===== CONTACT SECTION ===== */
.contact-section { padding: 6rem 0; }
.contact-inner { display: grid; grid-template-columns: 1fr; gap: 4rem; }
@media (min-width: 900px) { .contact-inner { grid-template-columns: 1fr 1.4fr; } }
.contact-items { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon {
  width: 44px; height: 44px; border-radius: var(--radius);
  background: rgba(42,107,124,0.1); color: var(--teal);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-label { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.2rem; }
.contact-item a { color: var(--dark); font-weight: 500; font-size: 1rem; transition: color var(--transition); }
.contact-item a:hover { color: var(--teal); }
.contact-reasons h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }

/* Contact form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.form-title { font-size: 1.4rem; margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--dark); }
.form-group label span { color: var(--teal); }
.form-group input, .form-group select, .form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--ivory-dark);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; color: var(--text);
  background: var(--ivory);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42,107,124,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-privacy { flex-direction: row; align-items: flex-start; gap: 0.75rem; }
.checkbox-label { display: flex; align-items: flex-start; gap: 0.6rem; cursor: pointer; font-size: 0.88rem; color: var(--text-muted); }
.checkbox-label input { margin-top: 2px; accent-color: var(--teal); }
.checkbox-label a { color: var(--teal); text-decoration: underline; }
.form-submit { margin-top: 0.5rem; }
.form-success {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(42,107,124,0.08);
  border: 1px solid rgba(42,107,124,0.2);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  color: var(--teal);
  font-size: 0.95rem;
}
.form-success[hidden] { display: none; }
.form-error {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(229,62,62,0.07);
  border: 1px solid rgba(229,62,62,0.25);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  color: #c53030;
  font-size: 0.95rem;
}
.form-error[hidden] { display: none; }
.form-error a { color: #c53030; text-decoration: underline; font-weight: 600; }

/* ===== ANIMATIONS ===== */
.fade-in-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .main-nav, .header-actions { display: none; }
  .hamburger { display: flex; }
  .header-inner { justify-content: space-between; }
  .dienst-inner.reverse .dienst-image { order: 0; }
}
@media (max-width: 640px) {
  .hero-content { padding: 8rem 0 4rem; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-trust { gap: 1rem; }
  .testimonial-card { position: static; margin-top: 1rem; max-width: 100%; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-buttons .btn { justify-content: center; }
  .contact-form-wrap { padding: 1.5rem; }
}

/* ===== PRINT ===== */
@media print {
  .site-header, .site-footer, .cta-section, .hamburger { display: none; }
  body { background: white; color: black; }
  a { color: inherit; }
}
