/* Base */
:root {
  --bg: #fff4ee;
  --fg: #1a1a1a;
  --muted: #6b6b6b;
  --accent: #e7191f; /* Titels/CTA kleur */
  --title: #e7191f;
  --card: #ffffff;
  --border: #e9ddd6;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: linear-gradient(180deg, rgba(255,244,238,0.95), rgba(255,244,238,0.7) 60%, rgba(255,244,238,0));
  backdrop-filter: blur(6px);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
}
.brand {
  color: var(--fg);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.4px;
}
.brand img { display: block; height: 44px; width: auto; }
@media (max-width: 600px) {
  .brand img { height: 36px; }
}
.site-nav a {
  color: var(--fg);
  text-decoration: none;
  margin-left: 20px;
  opacity: 0.9;
}
.site-nav a:hover { opacity: 1; }
.site-nav .cta { color: var(--accent); }

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 20;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: var(--title);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 100px 20px 30px;
    transition: right 0.3s ease;
    z-index: 15;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
  }
  
  .site-nav.active {
    right: 0;
  }
  
  .site-nav a {
    margin: 0 0 12px 0;
    font-size: 16px;
    font-weight: 500;
    color: white;
    background: var(--title);
    padding: 14px 20px;
    border-radius: 6px;
    text-align: center;
    width: 100%;
    transition: all 0.3s ease;
    border: none;
    display: block;
  }
  
  .site-nav a:hover {
    background: #c5151a;
    color: white;
    transform: translateY(-2px);
  }
  
  .site-nav .cta {
    background: white;
    color: #e7191f;
    margin-top: 20px;
    font-weight: 600;
    font-size: 17px;
    box-shadow: 0 4px 12px rgba(231, 25, 31, 0.2);
    border: 2px solid #e7191f;
  }
  
  .site-nav .cta:hover {
    background: #fff4ee;
    color: #c5151a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(231, 25, 31, 0.3);
  }
}

/* Hero */
.hero {
  padding: 16vh 0 14vh;
}
.display {
  font-size: clamp(40px, 8vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  color: var(--title);
}
.lead {
  color: var(--title);
  font-size: clamp(16px, 2.2vw, 22px);
  max-width: none;
  margin: 0;
}

/* Sections */
.section {
  padding: 80px 0;
}
.section h2 {
  font-size: 24px;
  margin: 0 0 24px;
  color: var(--title);
  font-weight: 600;
}

h2 {
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: #1800ad;
  border-radius: 50% 20% 80% 30% / 60% 40% 70% 50%;
  transform: rotate(-1.5deg) scaleX(1.05);
  box-shadow: 
    0 1px 0 rgba(24, 0, 173, 0.4),
    0 2px 0 rgba(24, 0, 173, 0.2);
  z-index: 1;
  filter: drop-shadow(1px 1px 0 rgba(24, 0, 173, 0.1));
}


.red-underline {
  color: var(--title);
  position: relative;
  display: inline-block;
}

.red-underline::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: #1800ad;
  border-radius: 50% 20% 80% 30% / 60% 40% 70% 50%;
  transform: rotate(-1.5deg) scaleX(1.05);
  box-shadow: 
    0 1px 0 rgba(24, 0, 173, 0.4),
    0 2px 0 rgba(24, 0, 173, 0.2);
  z-index: 1;
  filter: drop-shadow(1px 1px 0 rgba(24, 0, 173, 0.1));
}

.grid {
  display: grid;
  gap: 16px;
}
.work-grid {
  grid-template-columns: repeat(12, 1fr);
}
.card {
  grid-column: span 4;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  transition: transform 300ms ease, border-color 300ms ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--accent); }
.card h3 { margin: 0 0 8px; font-size: 20px; }
.card p { margin: 0; color: var(--muted); }
.title-accent { color: var(--title); }

/* Work cases */
.case .media {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}
.case .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.placeholder {
  background: repeating-linear-gradient(45deg, #f3e6df, #f3e6df 10px, #eee1da 10px, #eee1da 20px);
  border: 1px dashed var(--border);
}
.link { color: var(--accent); text-decoration: none; }
.link:hover { text-decoration: underline; }

/* Lists */
.list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
}
.list li {
  color: var(--fg);
  opacity: 0.9;
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 8px;
}
.list li::before {
  content: "";
  width: 16px;
  height: 16px;
  background: url('./Doe goed bullet blauw.png') no-repeat center / contain;
  margin-top: 3px;
}
.list--sub { grid-template-columns: 1fr; }
.service-item { margin-bottom: 16px; }
.service-item .label { 
  display: inline-block; 
  margin-bottom: 6px; 
  font-weight: normal;
  text-decoration: underline;
  text-decoration-color: #1800ad;
  text-underline-offset: 3px;
}

/* Clients section */
.clients-section {
  background: #ffffff;
  padding: 50px 0;
  border-top: none;
  margin: 0 auto;
  max-width: 1000px;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(231, 25, 31, 0.25);
}

#clients h2 {
  text-align: center;
  margin-bottom: 16px;
  font-size: 1.5rem;
  color: var(--title);
  font-weight: 600;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 24px;
  align-items: center;
  justify-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  background: transparent;
}

.client-logo:hover {
  opacity: 1;
}

.client-logo:hover img {
  filter: none;
}

.client-logo img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  background: transparent;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

/* About section */
.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 32px;
}

.about-text {
  max-width: none;
}

.about-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.pinned-photo {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 12px;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.15),
    0 4px 16px rgba(0, 0, 0, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.05);
  transform: rotate(-2deg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 3px solid #fff;
}

.pinned-photo:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.2),
    0 6px 20px rgba(0, 0, 0, 0.15),
    0 3px 12px rgba(0, 0, 0, 0.1);
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.service-col {
  grid-column: span 6;
  background: transparent;
  border: 1.5px solid var(--title);
  border-radius: 12px;
  padding: 20px;
}
.service-col h3 { margin-top: 0; margin-bottom: 12px; color: var(--title); }
.service-col .list { grid-template-columns: 1fr; }
.intro-blue { color: #1a1a1a; font-weight: 400; }
.list .label {
  color: #1800ad;
  font-weight: 800;
}

@media (max-width: 900px) {
  .service-col { grid-column: span 12; }
  .about-content { 
    grid-template-columns: 1fr; 
    gap: 32px; 
  }
  .about-image { 
    order: -1; 
    justify-content: center; 
  }
  .pinned-photo { 
    max-width: 200px; 
    transform: rotate(-1deg); 
  }
  .clients-section {
    margin: 0 20px;
    padding: 40px 0;
    max-width: calc(100% - 40px);
  }
  .clients-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 700px;
  }
  .client-logo {
    height: 50px;
  }
  .client-logo img {
    max-height: 50px;
  }
}

/* Contact */
.contact-form {
  display: grid;
  gap: 12px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
input, textarea {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--fg);
}
.button {
  background: var(--fg);
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  cursor: pointer;
}
.button:hover { filter: brightness(0.9); }

/* Footer */
.site-footer { border-top: 1px solid var(--border); padding: 24px 0; color: var(--muted); }

/* Video */
.video-hero { padding: 14vh 0 10vh; }
.video-hero .display + .lead { margin-bottom: 48px; }
.video-hero .lead { margin-bottom: 20px; }
.video-frame {
  border: 2px solid var(--accent);
  border-radius: 20px;
  padding: 8px;
  background: #ffffff;
}
.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  border: 0;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Responsive */
@media (max-width: 900px) {
  .card { grid-column: span 6; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .card { grid-column: span 12; }
  .list { grid-template-columns: 1fr; }
}


