/* ===== FREESTYLE 1 — PenseelMeester Voorbeeld — Schilder ===== */
/* Dark forest green + warm gold, Playfair Display / Inter */

:root {
  --color-bg: #0e1a0e;
  --color-surface: #142014;
  --color-text: #f0ede6;
  --color-muted: #9aac8f;
  --color-accent: #d4a843;
  --color-accent-dim: rgba(212,168,67,0.12);
  --color-dark: #1a2e1a;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --container: 1200px;
  --sp: clamp(60px, 8vw, 120px);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

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

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

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(14,26,14,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,168,67,0.08);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.logo span { color: var(--color-accent); }
.logo--footer { font-size: 1.4rem; }

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-muted);
  transition: color 0.3s;
}

.main-nav a:hover { color: var(--color-text); }

.nav-cta {
  background: var(--color-accent) !important;
  color: var(--color-bg) !important;
  padding: 10px 24px;
  border-radius: 99px;
  font-weight: 600 !important;
}

.nav-cta:hover { opacity: 0.9; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  margin: 5px 0;
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  background: radial-gradient(ellipse at 50% 30%, rgba(212,168,67,0.06) 0%, transparent 60%);
}

.hero-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-title em {
  font-style: italic;
  color: var(--color-accent);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== SCROLL-STOP VIDEO FRAME ANIMATION ===== */
.scroll-video {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: #0a140a;
}

.scroll-video__container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.scroll-video__canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scroll-video__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  background: rgba(14,26,14,0.35);
  pointer-events: none;
}

.scroll-video__tag {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-bg);
  padding: 8px 20px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.scroll-video__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.scroll-video__title em {
  font-style: italic;
  color: var(--color-accent);
}

/* ===== SERVICES ===== */
.services {
  padding: var(--sp) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

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

.service-card {
  background: var(--color-surface);
  border: 1px solid rgba(212,168,67,0.08);
  border-radius: 16px;
  padding: 36px 28px;
  transition: transform 0.3s, border-color 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,168,67,0.3);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--color-accent-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.65;
}

/* ===== STATS ===== */
.stats-bar {
  padding: 60px 0;
  background: var(--color-dark);
  border-top: 1px solid rgba(212,168,67,0.08);
  border-bottom: 1px solid rgba(212,168,67,0.08);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--color-accent);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-muted);
  font-weight: 500;
}

/* ===== SPLIT SECTIONS ===== */
.split-section {
  padding: var(--sp) 0;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-image img {
  border-radius: 16px;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.split-content .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.split-content .section-label {
  text-align: left;
}

.split-content p {
  color: var(--color-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.check-list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.95rem;
}

.check-list iconify-icon {
  color: var(--color-accent);
  font-size: 1.2rem;
}

/* ===== GALLERY ===== */
.gallery {
  padding: var(--sp) 0;
}

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

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
  transition: transform 0.5s;
}

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

/* ===== FAQ ===== */
.faq {
  padding: var(--sp) 0;
  background: var(--color-surface);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(212,168,67,0.1);
  padding: 24px 0;
}

.faq-item summary {
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--color-accent);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  color: var(--color-muted);
  margin-top: 16px;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ===== CTA ===== */
.cta {
  position: relative;
  padding: var(--sp) 0;
  background-size: cover;
  background-position: center;
  text-align: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,26,14,0.85);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta p {
  color: var(--color-muted);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s, opacity 0.2s;
  border: none;
  cursor: pointer;
}

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

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

.btn-outline {
  border: 2px solid rgba(212,168,67,0.3);
  color: var(--color-text);
  background: transparent;
}

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

/* ===== FOOTER ===== */
.site-footer {
  padding: 64px 0 32px;
  border-top: 1px solid rgba(212,168,67,0.08);
}

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

.footer-brand p {
  color: var(--color-muted);
  font-size: 0.9rem;
  margin-top: 12px;
  line-height: 1.6;
  max-width: 300px;
}

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

.footer-links h4 {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--color-muted);
  transition: color 0.3s;
}

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

.footer-links p {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(212,168,67,0.08);
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }

  .main-nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(14,26,14,0.97);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(212,168,67,0.1);
  }

  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .split-grid { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

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