    :root {
      --terracotta: #c86b4f;
      --terracotta-soft: #f4e1d6;
      --background: #fffaf6;
      --accent: #7b4b3a;
      --text: #3b2b28;
      --muted: #7f6f68;
      --card-bg: #ffffff;
    }
html {
  scroll-padding-top: 120px; /* hoogte van je sticky header */
}
@media (max-width: 600px) {
  html {
    scroll-padding-top: 150px; /* extra ruimte voor mobiele header */
  }
}
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: var(--background);
      color: var(--text);
      line-height: 1.6;
    }

    a {
      color: var(--terracotta);
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

 header {
  background: var(--background);
  border-bottom: 1px solid rgba(200, 107, 79, 0.15);
  max-width: 1100px;
  margin: 0 auto;
}
	.header-subtitle {
  	font-family: "Playfair Display", serif;
  	font-size: 1.2rem;
  	font-weight: 600;
  	color: var(--accent);
  	text-align: center;
  	margin-top: 0.6rem;
  	margin-bottom: 0.6rem;
  	letter-spacing: 0.03em;
}

.header-inner {
  position: sticky;
  top: 0;
  z-index: 100;

  padding: 0.4rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
    .nav {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0.75rem 1.25rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--accent);
      font-size: 0.95rem;
    }

	.logo img {
  	width: 95px;
  	height: auto;
  	}
    .logo span {
      font-weight: 400;
      font-size: 0.8rem;
      color: var(--muted);
      text-transform: none;
      letter-spacing: 0;
    }

 .nav-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.nav-links a {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 0.1rem;
}

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      background: var(--terracotta);
      transition: width 0.2s ease;
    }

    .nav-links a:hover {
  color: var(--accent);
}

    .hero {
      max-width: 1100px;
      margin: 0 auto;
      padding: 3.5rem 1.25rem 2.5rem;
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
      gap: 2.5rem;
      align-items: center;
    }

    .hero-text h1 {
      font-size: 1.6rem;
      line-height: 1.2;
      margin-bottom: 1rem;
      color: var(--accent);
    }

    .hero-text h1 span {
      display: block;
      font-size: 1.1rem;
      font-weight: 400;
      color: var(--muted);
      margin-top: 0.4rem;
    }

    .hero-text p {
      font-size: 1rem;
      color: var(--muted);
      margin-bottom: 1.5rem;
      max-width: 32rem;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.4rem 0.8rem;
      border-radius: 999px;
      background: rgba(200, 107, 79, 0.08);
      color: var(--accent);
      font-size: 0.8rem;
      margin-bottom: 0.75rem;
    }

    .hero-badge span.dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--terracotta);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-bottom: 0.75rem;
    }

    .btn-primary,
    .btn-secondary {
      border-radius: 999px;
      padding: 0.6rem 1.2rem;
      font-size: 0.9rem;
      border: 1px solid transparent;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
    }

    .btn-primary {
      background: var(--terracotta);
      color: #fff;
      border-color: var(--terracotta);
    }

    .btn-primary:hover {
      background: #b45f46;
      border-color: #b45f46;
    }

    .btn-secondary {
      background: transparent;
      color: var(--accent);
      border-color: rgba(123, 75, 58, 0.35);
    }

    .btn-secondary:hover {
      background: rgba(244, 225, 214, 0.7);
    }

    .hero-note {
      font-size: 0.8rem;
      color: var(--muted);
    }

    .hero-card {
      background: var(--terracotta-soft);
      border-radius: 1.2rem;
      padding: 1.5rem;
      border: 1px solid rgba(200, 107, 79, 0.25);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.04);
    }

    .hero-card h2 {
      font-size: 1.1rem;
      margin-bottom: 0.75rem;
      color: var(--accent);
    }

    .hero-card p {
      font-size: 0.9rem;
      color: var(--text);
      margin-bottom: 1rem;
    }

    .hero-list {
      list-style: none;
      font-size: 0.85rem;
      color: var(--text);
    }

    .hero-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
      margin-bottom: 0.4rem;
    }

    .hero-list span.bullet {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      margin-top: 0.25rem;
      background: var(--accent);
    }

    main {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 1.25rem 1rem;
    }

    section {
      padding: 1rem 0 1rem;
      border-top: 1px solid rgba(200, 107, 79, 0.12);
    }
	
    section:first-of-type {
      border-top: none;
    }

	section:nth-of-type(2) {
  	padding-top: 0.3rem;
	}

    .section-header {
      margin-bottom: 1.5rem;
    }

    .section-label {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--muted);
      margin-bottom: 0.3rem;
    }

    .section-title {
      font-size: 1.4rem;
      color: var(--accent);
      margin-bottom: 0.4rem;
    }

    .section-intro {
      font-size: 0.95rem;
      color: var(--muted);
      max-width: 36rem;
    }

    .grid-2 {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      gap: 2rem;
    }

    .card {
      background: var(--card-bg);
      border-radius: 1rem;
      padding: 1.25rem;
      border: 1px solid rgba(200, 107, 79, 0.12);
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.03);
    }

    .card h3 {
      font-size: 1.05rem;
      margin-bottom: 0.6rem;
      color: var(--accent);
    }

    .card p {
      font-size: 0.9rem;
      color: var(--text);
      margin-bottom: 0.6rem;
    }

    .pill-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-top: 0.4rem;
    }

    .pill {
      font-size: 0.8rem;
      padding: 0.25rem 0.7rem;
      border-radius: 999px;
      background: rgba(200, 107, 79, 0.08);
      color: var(--accent);
    }

    .list {
      list-style: none;
      font-size: 0.9rem;
      color: var(--text);
    }

    .list li {
      margin-bottom: 0.4rem;
      display: flex;
      gap: 0.4rem;
    }

    .list span.marker {
      color: var(--terracotta);
      font-weight: 600;
    }

    .columns-3 {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
    }

    .columns-2 {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;
    }

    .tagline {
      font-size: 0.9rem;
      color: var(--muted);
      margin-top: 0.4rem;
    }

    .rates-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.9rem;
      margin-top: 0.5rem;
    }

    .rates-table th,
    .rates-table td {
      padding: 0.5rem 0.3rem;
      border-bottom: 1px solid rgba(200, 107, 79, 0.12);
      text-align: left;
    }

    .rates-table th {
      font-weight: 600;
      color: var(--accent);
    }

    .highlight {
      color: var(--accent);
      font-weight: 500;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      gap: 2rem;
    }

    .contact-details p {
      font-size: 0.9rem;
      color: var(--text);
      margin-bottom: 0.4rem;
    }

    .contact-details span.label {
      font-weight: 600;
      color: var(--accent);
    }

    form {
      display: grid;
      gap: 0.75rem;
    }

    label {
      font-size: 0.8rem;
      color: var(--muted);
      margin-bottom: 0.15rem;
      display: block;
    }

    input,
    textarea {
      width: 100%;
      padding: 0.55rem 0.7rem;
      border-radius: 0.5rem;
      border: 1px solid rgba(123, 75, 58, 0.25);
      font-size: 0.9rem;
      font-family: inherit;
      background: #fff;
    }

    textarea {
      min-height: 120px;
      resize: vertical;
    }

    input:focus,
    textarea:focus {
      outline: 2px solid rgba(200, 107, 79, 0.35);
      border-color: rgba(200, 107, 79, 0.6);
    }

    .form-row-2 {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.75rem;
    }

    .form-note {
      font-size: 0.8rem;
      color: var(--muted);
      margin-top: 0.3rem;
    }

    footer {
      border-top: 1px solid rgba(200, 107, 79, 0.12);
      padding: 1.5rem 1.25rem 2rem;
      background: rgba(244, 225, 214, 0.4);
    }

    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 1rem;
      font-size: 0.8rem;
      color: var(--muted);
    }

    .footer-inner a {
      color: var(--muted);
    }
		
		.header-title {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.4rem 1rem; /* dezelfde padding als header-inner */
  text-align: center;
	
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  	font-size: 2.6rem;
  	font-weight: 600;
  	color: var(--accent);
  	letter-spacing: 0.03em;
}

    @media (max-width: 900px) {
      .hero {
        grid-template-columns: minmax(0, 1fr);
      }

      .grid-2,
      .contact-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    @media (max-width: 720px) {
      .nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
      }

      .nav-links {
        flex-wrap: wrap;
      }

      .hero {
        padding-top: 2.5rem;
      }

      .hero-text h1 {
        font-size: 2rem;
      }

      .columns-3 {
        grid-template-columns: minmax(0, 1fr);
      }

      .columns-2 {
        grid-template-columns: minmax(0, 1fr);
      }

      .form-row-2 {
        grid-template-columns: minmax(0, 1fr);
      }
    }

@media (max-width: 600px) {

  .logo img {
    width: 90px;   /* kleiner logo */
  }

  .header-title {
    font-size: 0.85rem;     /* kleinere titel */
    font-weight: 500;
    line-height: 1.3;       /* voorkomt koeieletters */
    letter-spacing: 0.01em; /* maakt het rustiger */
  }

  .header-subtitle {
    font-size: 1rem;
    margin-bottom: 0.4rem;
  }

  .nav-links {
    gap: 0.6rem;
  }

  .nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
  }

  .header-inner {
    padding: 0.5rem 1rem;
  }
}