
/* =========================================================
   DESIGN TOKENS
   ========================================================= */
:root {
  --off-white: #F5F1EA;
  --ivory: #EDE6DA;
  --sand: #D9CDB8;
  --taupe: #A89680;
  --warm-grey: #6B6258;
  --dark-brown: #2B1F15;
  --ink: #1A1410;
  --accent: #6B4423;
  --line: rgba(43, 31, 21, 0.12);
  --line-strong: rgba(43, 31, 21, 0.28);
  --gutter: clamp(20px, 4vw, 56px);
  --section-y: clamp(72px, 12vw, 160px);
}

/* RESET & BASE */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
}
body {
  background: var(--off-white);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  font-size: 16px;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
img, picture, video, svg { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }

@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
}

/* GRAIN OVERLAY */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  z-index: 200;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' /%3E%3C/svg%3E");
}

/* CUSTOM CURSOR */
.cursor { display: none; }
@media (hover: hover) and (pointer: fine) {
  .cursor {
    display: block;
    position: fixed;
    width: 8px; height: 8px;
    background: var(--dark-brown);
    border-radius: 50%;
    pointer-events: none;
    z-index: 300;
    transform: translate(-50%, -50%);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                height 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.3s ease, opacity 0.3s ease;
    mix-blend-mode: difference;
  }
  .cursor.hover { width: 56px; height: 56px; background: var(--off-white); }
  .cursor.hidden { opacity: 0; }
}

.container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.container-narrow {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* =========================================================
   HEADER
   ========================================================= */
header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 60;
  padding: clamp(14px, 2.2vw, 24px) var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--off-white);
}
header.scrolled, header.dark-page {
  padding-top: clamp(10px, 1.6vw, 16px);
  padding-bottom: clamp(10px, 1.6vw, 16px);
  background: rgba(245, 241, 234, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.logo {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(18px, 2vw, 22px);
  letter-spacing: 0.06em;
  position: relative;
  z-index: 60;
}
.logo em { font-style: italic; font-weight: 300; opacity: 0.6; }

.desktop-nav { display: none; }
@media (min-width: 969px) {
  .desktop-nav {
    display: flex;
    list-style: none;
    gap: clamp(20px, 3vw, 40px);
    align-items: center;
  }
}
.desktop-nav a {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding: 8px 0;
}
.desktop-nav a:not(.header-cta)::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.desktop-nav a:not(.header-cta):hover::after { width: 100%; }
  /* Maatwerk dropdown (desktop) */
  .nav-dd { position: relative; }
  .nav-dd > a { display: inline-flex; align-items: center; gap: 5px; }
  .nav-dd > a .dd-caret { width: 8px; height: 8px; transition: transform 0.3s ease; }
  .nav-dd:hover > a .dd-caret, .nav-dd:focus-within > a .dd-caret { transform: rotate(180deg); }
  .nav-dd-panel {
    position: absolute; top: 100%; left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 220px; background: var(--off-white); border: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(26, 20, 16, 0.12);
    padding: 10px 0; list-style: none;
    opacity: 0; visibility: hidden;
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s; z-index: 250;
  }
  .nav-dd:hover .nav-dd-panel, .nav-dd:focus-within .nav-dd-panel {
    opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
  }
  .nav-dd-panel li { display: block; }
  .nav-dd-panel a {
    display: block; padding: 11px 26px; font-size: 13px; letter-spacing: 0.06em;
    text-transform: none; white-space: nowrap; color: var(--ink);
    transition: background 0.25s ease, padding-left 0.25s ease;
  }
  .nav-dd-panel a::after { display: none; }
  .nav-dd-panel a:hover { background: rgba(43, 31, 21, 0.05); padding-left: 30px; }
  .nav-dd-panel::before { content: ''; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }

.desktop-nav a.active::after { width: 100%; }

.header-cta {
  border: 1px solid currentColor;
  padding: 10px 22px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.4s ease;
  display: inline-block;
}
.header-cta:hover {
  background: var(--ink);
  color: var(--off-white);
  border-color: var(--ink);
}

.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px; height: 32px;
  cursor: pointer;
  z-index: 60;
  position: relative;
}
.mobile-toggle span {
  width: 24px; height: 1.5px;
  background: currentColor;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-toggle.open span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }
@media (min-width: 969px) { .mobile-toggle { display: none; } }

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--ink);
  color: var(--off-white);
  z-index: 55;
  padding: clamp(80px, 12vh, 110px) var(--gutter) 40px;
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu ul { list-style: none; }
.mobile-menu li { border-bottom: 1px solid rgba(245, 241, 234, 0.12); }
.mobile-menu a {
  display: block;
  padding: 24px 0;
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 8vw, 42px);
  line-height: 1;
  letter-spacing: -0.02em;
  transition: padding-left 0.4s ease;
}
.mobile-menu a:hover, .mobile-menu a:active { padding-left: 16px; }
.mobile-menu .mm-sub { list-style: none; margin: 4px 0 8px; padding: 0; }
.mobile-menu .mm-sub a { font-size: clamp(17px, 4.5vw, 22px); padding: 11px 0 11px 18px; color: rgba(245, 241, 234, 0.78); border-left: 1px solid rgba(245, 241, 234, 0.18); margin-left: 2px; }
.mobile-menu .mm-sub a:hover, .mobile-menu .mm-sub a:active { padding-left: 26px; color: var(--off-white); }
.mobile-menu .mm-cta {
  margin-top: 32px;
  padding: 20px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--accent);
  border: 1px solid var(--accent);
}
.mobile-menu-footer {
  padding-top: 32px;
  border-top: 1px solid rgba(245, 241, 234, 0.12);
  font-size: 12px;
  color: rgba(245, 241, 234, 0.6);
  line-height: 1.7;
}
.mobile-menu-footer a {
  padding: 4px 0;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--off-white);
}
body.menu-open { overflow: hidden; }
body.menu-open header {
  color: var(--off-white) !important;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: none !important;
}

/* =========================================================
   PAGE HERO (used by sub-pages, smaller than home hero)
   ========================================================= */
.page-hero {
  position: relative;
  min-height: clamp(520px, 75vh, 720px);
  overflow: hidden;
  color: var(--off-white);
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(64px, 10vh, 120px);
  padding-top: clamp(120px, 16vh, 160px);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 18s linear;
}
.page-hero.in-view .page-hero-bg { transform: scale(1); }
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 20, 16, 0.4) 0%, rgba(26, 20, 16, 0.2) 30%, rgba(26, 20, 16, 0.75) 100%);
}
.page-hero .container { position: relative; z-index: 2; width: 100%; }
.page-hero-eyebrow {
  font-size: clamp(10px, 1.2vw, 12px);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: clamp(20px, 3vh, 32px);
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0.9;
  overflow: hidden;
}
.page-hero-eyebrow span {
  display: inline-block;
  transform: translateY(100%);
  animation: rise 1.2s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.page-hero-eyebrow::before {
  content: '';
  width: clamp(24px, 4vw, 40px);
  height: 1px;
  background: var(--off-white);
  transform: scaleX(0);
  transform-origin: left;
  animation: lineGrow 1s 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  flex-shrink: 0;
}
.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(48px, 9vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  max-width: 1100px;
  font-variation-settings: "opsz" 144;
}
.page-hero h1 .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
}
.page-hero h1 .line > span {
  display: inline-block;
  transform: translateY(110%);
}
.page-hero h1 .line:nth-child(1) > span { animation: rise 1.3s 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.page-hero h1 .line:nth-child(2) > span { animation: rise 1.3s 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.page-hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--sand);
}
.page-hero-sub {
  margin-top: clamp(24px, 4vh, 40px);
  max-width: 560px;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.6;
  opacity: 0.85;
  opacity: 0;
  animation: fadeIn 1.2s 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes lineGrow { to { transform: scaleX(1); } }
@keyframes rise { to { transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 0.85; } }

/* =========================================================
   SECTIONS
   ========================================================= */
section.block {
  padding: var(--section-y) 0;
  position: relative;
}
.section-eye {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(32px, 5vw, 56px);
  font-size: clamp(10px, 1.1vw, 11px);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--warm-grey);
}
.section-eye .num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--accent);
  font-size: 13px;
}
.section-eye .line {
  flex: 1;
  height: 1px;
  background: var(--line);
  max-width: 200px;
}

/* Display heading shared */
h2.display {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(36px, 6vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.028em;
}
h2.display em { font-style: italic; font-weight: 300; }
h3.serif {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.015em;
}
h3.serif em { font-style: italic; font-weight: 300; }

/* Lead paragraph */
.lead {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.65;
  color: var(--warm-grey);
  max-width: 560px;
}

/* =========================================================
   QUOTE BLOCK (reusable)
   ========================================================= */
.quote-block {
  padding: var(--section-y) 0;
  text-align: center;
}
.quote-block blockquote {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(24px, 4.5vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  max-width: 1100px;
  margin: 0 auto clamp(24px, 4vw, 40px);
}
.quote-block blockquote em { font-style: italic; font-weight: 300; color: var(--accent); }
.quote-block .quote-mark {
  font-family: 'Fraunces', serif;
  font-size: clamp(56px, 8vw, 80px);
  color: var(--accent);
  line-height: 0;
  height: clamp(28px, 4vw, 40px);
  margin-bottom: clamp(28px, 4vw, 40px);
  font-style: italic;
}
.quote-block cite {
  font-style: normal;
  font-size: clamp(11px, 1.2vw, 12px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm-grey);
  display: inline-block;
}
.quote-block cite strong {
  color: var(--ink);
  font-weight: 500;
  margin-right: 12px;
}

/* =========================================================
   CTA BLOCK (reusable end-of-page)
   ========================================================= */
.cta-final {
  padding: var(--section-y) 0;
  text-align: center;
}
.cta-eyebrow {
  font-size: clamp(10px, 1.2vw, 11px);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-bottom: clamp(28px, 4vw, 40px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.cta-eyebrow::before, .cta-eyebrow::after {
  content: '';
  width: clamp(20px, 3vw, 32px);
  height: 1px;
  background: var(--warm-grey);
}
.cta-final h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(40px, 8vw, 120px);
  line-height: 0.94;
  letter-spacing: -0.035em;
  margin-bottom: clamp(36px, 6vw, 56px);
  max-width: 1100px;
  margin-left: auto; margin-right: auto;
}
.cta-final h2 em { font-style: italic; font-weight: 300; color: var(--accent); }
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--dark-brown);
  color: var(--off-white);
  padding: clamp(18px, 2.5vw, 24px) clamp(24px, 4vw, 44px);
  font-size: clamp(12px, 1.3vw, 13px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.cta-button::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}
@media (hover: hover) {
  .cta-button:hover::before { width: 600px; height: 600px; }
  .cta-button:hover svg { transform: translateX(6px); }
}
.cta-button span, .cta-button svg { position: relative; z-index: 2; transition: transform 0.4s ease; }
.cta-secondary {
  margin-top: clamp(32px, 5vw, 48px);
  font-size: clamp(12px, 1.3vw, 13px);
  color: var(--warm-grey);
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 32px);
  flex-wrap: wrap;
  align-items: center;
}
.cta-secondary a {
  border-bottom: 1px solid var(--line);
  padding-bottom: 3px;
  transition: border-color 0.3s ease;
}
.cta-secondary a:hover { border-color: var(--ink); }

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: var(--ink);
  color: var(--off-white);
  padding: clamp(56px, 8vw, 80px) 0 clamp(24px, 3vw, 40px);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 56px);
  padding-bottom: clamp(40px, 6vw, 64px);
  border-bottom: 1px solid rgba(245, 241, 234, 0.15);
}
@media (min-width: 541px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (min-width: 769px) { .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; } }
@media (min-width: 541px) and (max-width: 768px) {
  .footer-brand { grid-column: 1 / -1; }
}
.footer-logo {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: clamp(16px, 2.5vw, 24px);
}
.footer-logo em { font-style: italic; font-weight: 300; opacity: 0.5; }
.footer-tag {
  font-size: clamp(13px, 1.4vw, 14px);
  color: rgba(245, 241, 234, 0.6);
  max-width: 320px;
  line-height: 1.55;
}
.footer-col h4 {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.5);
  margin-bottom: clamp(16px, 2.5vw, 24px);
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: clamp(10px, 1.5vw, 14px); }
.footer-col a {
  font-size: clamp(13px, 1.4vw, 14px);
  opacity: 0.85;
  transition: opacity 0.3s ease;
}
.footer-col a:hover { opacity: 1; }
.footer-bottom {
  padding-top: clamp(20px, 3vw, 32px);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: clamp(10px, 1.1vw, 11px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.4);
}

/* =========================================================
   MOBILE STICKY CTA
   ========================================================= */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--dark-brown);
  color: var(--off-white);
  text-align: center;
  padding: 16px;
  z-index: 40;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
}
@media (max-width: 768px) {
  .mobile-cta { display: block; }
  body { padding-bottom: 54px; }
}

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .page-hero-bg { transform: none !important; }
  .page-hero-eyebrow span,
  .page-hero h1 .line > span { transform: none !important; }
  .page-hero-sub { opacity: 0.85 !important; }
}

<style>
/* Contact page — light background, no full-bleed hero */
.contact-hero {
  padding: clamp(140px, 18vh, 200px) 0 clamp(48px, 8vh, 80px);
  background: var(--ivory);
}
.contact-hero-grid {
  display: grid; grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 80px); align-items: end;
}
@media (min-width: 769px) {
  .contact-hero-grid { grid-template-columns: 1fr 1fr; }
}
.contact-eyebrow {
  font-size: clamp(10px, 1.2vw, 12px);
  letter-spacing: 0.28em; text-transform: uppercase;
  margin-bottom: clamp(20px, 3vh, 32px);
  display: flex; align-items: center; gap: 14px;
  color: var(--warm-grey);
}
.contact-eyebrow::before {
  content: ''; width: clamp(24px, 4vw, 40px);
  height: 1px; background: var(--warm-grey);
}
.contact-hero h1 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(40px, 7vw, 96px); line-height: 0.95;
  letter-spacing: -0.03em;
}
.contact-hero h1 em { font-style: italic; font-weight: 300; color: var(--accent); }
.contact-hero p.intro {
  font-size: clamp(15px, 1.6vw, 18px); line-height: 1.65;
  color: var(--ink); max-width: 480px;
}

/* Main contact section */
.contact-main {
  padding: clamp(56px, 9vw, 120px) 0;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr;
  gap: clamp(48px, 7vw, 96px); align-items: start;
}
@media (min-width: 769px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: clamp(48px, 6vw, 120px); }
}

/* Form */
.contact-form .form-eye {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--warm-grey); margin-bottom: clamp(28px, 4vw, 40px);
  display: flex; align-items: center; gap: 16px;
}
.contact-form .form-eye .num {
  font-family: 'Fraunces', serif; font-style: italic;
  color: var(--accent); font-size: 13px;
}
.contact-form h2 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(28px, 4vw, 44px); line-height: 1;
  letter-spacing: -0.022em; margin-bottom: clamp(32px, 5vw, 48px);
}
.contact-form h2 em { font-style: italic; font-weight: 300; }

.form-group {
  margin-bottom: clamp(24px, 3.5vw, 32px);
}
.form-label {
  display: block;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--warm-grey); margin-bottom: 10px;
  font-weight: 500;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  padding: 10px 0 12px;
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.5vw, 16px);
  color: var(--ink);
  transition: border-color 0.4s ease, padding 0.4s ease;
  letter-spacing: 0.005em;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--ink);
  padding-left: 4px;
}
.form-input::placeholder, .form-textarea::placeholder {
  color: var(--taupe);
  font-style: italic;
}
.form-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.55;
}
.form-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'><path d='M1 1l6 6 6-6' stroke='%236B6258' fill='none' stroke-width='1.2'/></svg>");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 12px;
  padding-right: 24px;
}
.form-select option { font-family: 'Inter', sans-serif; color: var(--ink); }

.form-row {
  display: grid; grid-template-columns: 1fr; gap: clamp(20px, 3vw, 32px);
}
@media (min-width: 541px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-disclaimer {
  font-size: 12px; color: var(--warm-grey);
  margin-top: clamp(20px, 3vw, 28px);
  margin-bottom: clamp(24px, 4vw, 32px);
  line-height: 1.55;
  max-width: 480px;
}
.form-disclaimer a {
  border-bottom: 1px solid var(--line);
  padding-bottom: 1px;
}

.form-submit {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 16px;
  background: var(--dark-brown); color: var(--off-white);
  padding: clamp(16px, 2.2vw, 22px) clamp(28px, 4vw, 44px);
  font-size: clamp(12px, 1.3vw, 13px);
  letter-spacing: 0.16em; text-transform: uppercase;
  border: none; cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.4s ease;
  position: relative; overflow: hidden;
}
.form-submit:hover { background: var(--accent); }
.form-submit svg { transition: transform 0.4s ease; }
.form-submit:hover svg { transform: translateX(6px); }

/* Sidebar — direct contact methods */
.contact-side .side-eye {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--warm-grey); margin-bottom: clamp(28px, 4vw, 40px);
  display: flex; align-items: center; gap: 16px;
}
.contact-side .side-eye .num {
  font-family: 'Fraunces', serif; font-style: italic;
  color: var(--accent); font-size: 13px;
}
.contact-side h2 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(28px, 4vw, 44px); line-height: 1;
  letter-spacing: -0.022em; margin-bottom: clamp(32px, 5vw, 48px);
}
.contact-side h2 em { font-style: italic; font-weight: 300; }

.direct-block {
  padding: clamp(24px, 3.5vw, 32px) 0;
  border-top: 1px solid var(--line);
}
.direct-block:last-of-type {
  border-bottom: 1px solid var(--line);
}
.direct-block .label {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--warm-grey); margin-bottom: 8px;
}
.direct-block .value {
  font-family: 'Fraunces', serif; font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.25; letter-spacing: -0.015em;
}
.direct-block .value a {
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: border-color 0.3s ease;
}
.direct-block .value a:hover { border-color: var(--ink); }
.direct-block .detail {
  font-size: 13px; color: var(--warm-grey);
  line-height: 1.55; margin-top: 8px;
}

/* Process summary - what happens after contact */
.process-mini {
  padding: var(--section-y) 0;
  background: var(--ivory);
}
.process-mini-head { margin-bottom: clamp(48px, 7vw, 72px); max-width: 720px; }
.process-mini-grid {
  display: grid; grid-template-columns: 1fr; gap: clamp(28px, 4vw, 48px);
}
@media (min-width: 641px) { .process-mini-grid { grid-template-columns: repeat(3, 1fr); } }
.process-mini-step {
  border-top: 1px solid var(--line-strong);
  padding-top: clamp(20px, 3vw, 28px);
}
.process-mini-step .step-num {
  font-family: 'Fraunces', serif; font-style: italic;
  color: var(--accent); font-size: clamp(14px, 1.4vw, 15px);
  margin-bottom: clamp(16px, 2.5vw, 20px); display: block;
}
.process-mini-step h3 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(20px, 2.4vw, 26px); line-height: 1.15;
  letter-spacing: -0.015em; margin-bottom: 12px;
}
.process-mini-step h3 em { font-style: italic; font-weight: 300; }
.process-mini-step p {
  font-size: clamp(13px, 1.3vw, 14px); line-height: 1.6;
  color: var(--warm-grey);
}

/* Service area note */
.area-note {
  padding: clamp(56px, 9vw, 96px) 0;
  background: var(--dark-brown);
  color: var(--off-white);
}
.area-note-grid {
  display: grid; grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 64px); align-items: center;
}
@media (min-width: 769px) {
  .area-note-grid { grid-template-columns: 1fr 1.4fr; }
}
.area-note h2 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(28px, 4.5vw, 56px); line-height: 1;
  letter-spacing: -0.025em;
}
.area-note h2 em { font-style: italic; font-weight: 300; color: var(--sand); }
.area-note p {
  font-size: clamp(15px, 1.5vw, 17px); line-height: 1.65;
  color: rgba(245, 241, 234, 0.8);
  max-width: 540px;
}
.area-note p strong {
  color: var(--off-white); font-weight: 500;
}
/* Footer-adres consistent met de overige contact-items */
.footer-col .footer-address {
  font-size: clamp(13px, 1.4vw, 14px);
  opacity: 0.85;
}

/* Romeinse cijfers verbergen, consistent met de overige pagina's */
.num, .typo-num, .detail-num, .step-num { display: none !important; }

/* ── Conversie: donkere formulierkaart ── */
.contact-form {
  background: var(--dark-brown);
  color: var(--off-white);
  padding: clamp(28px, 4.5vw, 56px);
}
.contact-form .form-eye { color: var(--sand); }
.contact-form h2 { color: var(--off-white); }
.contact-form h2 em { color: var(--sand); }
.contact-form .form-label { color: rgba(245, 241, 234, 0.62); }
.contact-form .form-input,
.contact-form .form-select,
.contact-form .form-textarea {
  color: var(--off-white);
  border-bottom-color: rgba(245, 241, 234, 0.32);
}
.contact-form .form-input:focus,
.contact-form .form-select:focus,
.contact-form .form-textarea:focus {
  border-color: var(--off-white);
}
.contact-form .form-input::placeholder,
.contact-form .form-textarea::placeholder {
  color: rgba(245, 241, 234, 0.4);
}
.contact-form .form-select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'><path d='M1 1l6 6 6-6' stroke='%23D9CDB8' fill='none' stroke-width='1.2'/></svg>");
}
.contact-form .form-disclaimer { color: rgba(245, 241, 234, 0.55); }
.contact-form .form-disclaimer a { border-bottom-color: rgba(245, 241, 234, 0.3); color: rgba(245,241,234,0.8); }
.contact-form .form-submit {
  background: var(--off-white);
  color: var(--ink);
  width: 100%;
}
.contact-form .form-submit:hover { background: var(--sand); }
.form-trust {
  display: flex; flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: clamp(18px, 2.5vw, 24px);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(245, 241, 234, 0.6);
}
.form-trust span::before {
  content: '✓'; margin-right: 8px; color: var(--sand);
}

/* Route-CTA in de zijkolom */
.side-cta {
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: clamp(16px, 2.2vw, 22px);
  background: var(--dark-brown); color: var(--off-white);
  padding: clamp(14px, 1.8vw, 18px) clamp(24px, 3vw, 36px);
  font-size: clamp(12px, 1.3vw, 13px);
  letter-spacing: 0.16em; text-transform: uppercase;
  transition: background 0.4s ease;
}
.side-cta:hover { background: var(--accent); }

/* Hero-CTA naar het formulier */
.page-hero .hero-cta {
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: clamp(24px, 3.5vh, 36px);
  background: var(--off-white); color: var(--ink);
  padding: clamp(15px, 2vw, 20px) clamp(26px, 3.5vw, 40px);
  font-size: clamp(12px, 1.3vw, 13px);
  letter-spacing: 0.16em; text-transform: uppercase;
  transition: background 0.4s ease;
}
.page-hero .hero-cta:hover { background: var(--sand); }

/* Werkbus-strook */
.bus-strip { padding: clamp(72px, 12vw, 160px) 0 0; }
.bus-strip .bus-image { width: 100%; aspect-ratio: 16/9; background-size: cover; background-position: center; }
.bus-strip .bus-caption { font-style: italic; color: var(--ink-soft, #6b5d4f); margin-top: 18px; font-size: clamp(14px, 1.6vw, 16px); }

/* FAQ */
.faq-head { margin-bottom: clamp(48px, 8vw, 80px); max-width: 720px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: clamp(24px, 3.5vw, 32px) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  transition: padding 0.4s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
@media (hover: hover) {
  .faq-item summary:hover { padding-left: 12px; }
}
.faq-icon {
  width: 20px; height: 20px;
  position: relative;
  flex-shrink: 0;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 0;
  width: 100%; height: 1px;
  background: var(--warm-grey);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-icon::after { transform: rotate(90deg); }
.faq-item[open] .faq-icon::after { transform: rotate(0); }
.faq-content {
  padding: 0 0 clamp(24px, 3.5vw, 32px) 0;
  max-width: 720px;
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.7;
  color: var(--warm-grey);
}
.faq-content p { margin-bottom: 0.8em; }
.faq-content p:last-child { margin-bottom: 0; }



.footer-word{height:19px;width:auto;display:block;opacity:.95;} /*footer-word*/
.crumbs a:hover{color:var(--accent);} .ld-item a:hover{color:var(--accent);} .manifesto-body a:hover{color:var(--accent);} /*accent-hover*/
.logo{display:inline-flex;align-items:center;gap:12px;line-height:0;}
.logo-mark{height:30px;width:auto;flex:none;display:block;}
.logo-word{height:15px;width:auto;flex:none;display:block;}
@media(max-width:560px){.logo-mark{height:26px;}.logo-word{height:12px;}}
.footer-mark{height:46px;width:auto;flex:none;display:block;opacity:.95;} /*logo-css*/

.header-tel { display:flex; align-items:center; }
.header-tel a { display:inline-flex; align-items:center; gap:7px; font-size:14px; color:inherit; opacity:.9; }
.header-tel a:hover { opacity:1; }
@media (max-width:900px) { .header-tel { display:none; } }
.mobile-bar { position:fixed; left:0; right:0; bottom:0; z-index:300; display:none; grid-template-columns:1fr 1fr; }
.mobile-bar a { display:flex; align-items:center; justify-content:center; gap:9px; padding:16px 10px; font-size:15px; font-weight:500; text-decoration:none; letter-spacing:.01em; }
.mobile-bar a.mb-call { background:var(--off-white,#f3efe7); color:var(--ink,#2b2018); border-top:1px solid var(--line,#d8d0c4); }
.mobile-bar a.mb-wa { background:#2b2018; color:#f3efe7; }
@media (max-width:768px) { .mobile-bar { display:grid; } body { padding-bottom:58px; } }
.crumbs { font-size:12px; letter-spacing:.04em; text-transform:uppercase; color:var(--warm-grey,#8a8175); padding:clamp(18px,3vw,26px) 0; }
.crumbs .container { display:flex; flex-wrap:wrap; gap:8px; align-items:center; }
.crumbs a { color:inherit; text-decoration:none; opacity:.8; }
.crumbs a:hover { opacity:1; text-decoration:underline; }
.crumbs span.sep { opacity:.45; }
.crumbs span.here { color:var(--ink,#2b2018); }
.footer-social { display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:18px; padding:clamp(24px,4vw,32px) 0 0; margin-top:clamp(24px,4vw,32px); border-top:1px solid rgba(255,255,255,.12); }
.footer-tagline { font-family:'Fraunces',serif; font-style:italic; font-size:clamp(16px,2vw,20px); opacity:.92; }
.footer-social-links { display:flex; gap:14px; }
.footer-social-links a { display:inline-flex; width:44px; height:44px; align-items:center; justify-content:center; border:1px solid rgba(255,255,255,.25); border-radius:50%; color:inherit; transition:background .25s,color .25s; }
.footer-social-links a:hover { background:#f3efe7; color:#2b2018; }

/* =========================================================================
   Gravity Forms — skin in Piet Boon-stijl.
   Laat het GF-formulier identiek ogen aan het oorspronkelijke ontwerp.
   Plaats de form via shortcode [gravityform id="1" title="false" description="false"]
   in de raw/contact-sectie. contact.css laadt alleen op de contactpagina.
   Tip: zet in Forms > Settings "Output Default CSS" eventueel uit voor minder reset-werk.
   ========================================================================= */
.gform_wrapper.gravity-theme,
.gform_wrapper {
  --gf-color-primary: var(--dark-brown);
  --gform-theme-color-primary: var(--dark-brown);
  margin: 0;
}
.gform_wrapper form { margin: 0; }

/* Velden + spacing */
.gform_wrapper .gform_fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 3.5vw, 32px);
  grid-row-gap: clamp(24px, 3.5vw, 32px);
}
.gform_wrapper .gfield { margin: 0; padding: 0; }

/* Twee-koloms rij: geef velden de GF CSS Ready Class "gf_left_half" / "gf_right_half"
   of gebruik de 2.5+ kolominstelling. Onderstaande dekt beide. */
@media (min-width: 541px) {
  .gform_wrapper .gfield.gf_left_half  { grid-column: 1 / 2; }
  .gform_wrapper .gfield.gf_right_half { grid-column: 2 / 3; }
  .gform_wrapper .gform_fields:has(.gf_left_half) { grid-template-columns: 1fr 1fr; }
}

/* Labels */
.gform_wrapper .gfield_label,
.gform_wrapper legend.gfield_label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-bottom: 10px;
  font-weight: 500;
}
.gform_wrapper .gfield_required { color: var(--accent); margin-left: 4px; }

/* Inputs / select / textarea — onderlijn-stijl */
.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="tel"],
.gform_wrapper input[type="url"],
.gform_wrapper input[type="number"],
.gform_wrapper textarea,
.gform_wrapper select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  padding: 10px 0 12px;
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.5vw, 16px);
  color: var(--ink);
  letter-spacing: 0.005em;
  box-shadow: none;
  transition: border-color 0.4s ease, padding 0.4s ease;
}
.gform_wrapper input:focus,
.gform_wrapper textarea:focus,
.gform_wrapper select:focus {
  outline: none;
  border-color: var(--ink);
  padding-left: 4px;
  box-shadow: none;
}
.gform_wrapper input::placeholder,
.gform_wrapper textarea::placeholder {
  color: var(--taupe);
  font-style: italic;
}
.gform_wrapper textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.55;
}
.gform_wrapper select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'><path d='M1 1l6 6 6-6' stroke='%236B6258' fill='none' stroke-width='1.2'/></svg>");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 12px;
  padding-right: 24px;
}

/* Validatie */
.gform_wrapper .gfield_description.validation_message,
.gform_wrapper .gfield_validation_message {
  font-size: 12px;
  color: #9b2c1f;
  margin-top: 8px;
  background: none;
  border: none;
  padding: 0;
}
.gform_wrapper .gfield_error input,
.gform_wrapper .gfield_error textarea,
.gform_wrapper .gfield_error select { border-bottom-color: #9b2c1f; }
.gform_wrapper .gform_validation_errors {
  background: none;
  border: none;
  border-left: 2px solid var(--accent);
  box-shadow: none;
  padding: 12px 0 12px 16px;
  margin-bottom: clamp(20px, 3vw, 28px);
}
.gform_wrapper .gform_validation_errors h2 {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--ink);
  margin: 0;
}

/* Consent / disclaimer */
.gform_wrapper .gfield_consent_label,
.gform_wrapper .gfield--type-consent label {
  font-size: 12px;
  color: var(--warm-grey);
  line-height: 1.55;
}

/* Verzendknop — identiek aan .form-submit */
.gform_wrapper .gform_footer {
  margin: clamp(24px, 4vw, 32px) 0 0;
  padding: 0;
}
.gform_wrapper .gform_footer input[type="submit"],
.gform_wrapper .gform_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: auto;
  background: var(--dark-brown);
  color: var(--off-white);
  padding: clamp(16px, 2.2vw, 22px) clamp(28px, 4vw, 44px);
  font-family: 'Inter', sans-serif;
  font-size: clamp(12px, 1.3vw, 13px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.4s ease;
}
.gform_wrapper .gform_footer input[type="submit"]:hover,
.gform_wrapper .gform_button:hover { background: var(--accent); }

/* Bevestiging na verzenden */
.gform_confirmation_wrapper,
.gform_confirmation_message {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--ink);
}

/* AJAX-spinner netjes uitlijnen */
.gform_wrapper .gform_ajax_spinner { margin-left: 14px; }

/* =========================================================================
   Gravity Form in de contactsectie — zelfde stijl als het maatwerk-formulier
   ========================================================================= */
.contact-form .gform_wrapper { margin: 0; }
.contact-form .gform_wrapper .gform_fields { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px,3vw,32px) clamp(20px,3vw,32px); }
.contact-form .gform_wrapper .gfield { margin: 0 !important; }
.contact-form .gform_wrapper .gfield--type-select,
.contact-form .gform_wrapper .gfield--type-textarea { grid-column: 1 / -1; }
.contact-form .gform_wrapper .gfield_label { display: block; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--warm-grey); margin-bottom: 10px; font-weight: 400; }
.contact-form .gform_wrapper .gfield_required { color: var(--accent); margin-left: 4px; }
.contact-form .gform_wrapper input[type=text],
.contact-form .gform_wrapper input[type=email],
.contact-form .gform_wrapper input[type=tel],
.contact-form .gform_wrapper select,
.contact-form .gform_wrapper textarea {
  width: 100%; background: transparent !important; border: none !important;
  border-bottom: 1px solid var(--line-strong) !important; border-radius: 0 !important;
  box-shadow: none !important; padding: 10px 0 12px; font-family: 'Inter', sans-serif;
  font-size: clamp(15px,1.5vw,16px); color: var(--ink); transition: border-color .4s ease;
}
.contact-form .gform_wrapper input:focus,
.contact-form .gform_wrapper select:focus,
.contact-form .gform_wrapper textarea:focus { outline: none; border-color: var(--ink) !important; }
.contact-form .gform_wrapper ::placeholder { color: var(--taupe); font-style: italic; }
.contact-form .gform_wrapper textarea { min-height: 100px; line-height: 1.55; resize: vertical; }
.contact-form .gform_wrapper select {
  appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 24px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'><path d='M1 1l6 6 6-6' stroke='%236B6258' fill='none' stroke-width='1.2'/></svg>");
  background-repeat: no-repeat; background-position: right center; background-size: 12px;
}
.contact-form .gform_wrapper .gform_footer { margin: clamp(24px,4vw,32px) 0 0; padding: 0; }
.contact-form .gform_wrapper .gform_footer button,
.contact-form .gform_wrapper .gform_button {
  display: inline-flex; align-items: center; gap: 14px; background: var(--dark-brown); color: var(--off-white);
  border: none; border-radius: 0; padding: clamp(16px,2vw,20px) clamp(28px,3vw,40px);
  font-family: 'Inter', sans-serif; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; cursor: pointer; transition: background .4s ease;
}
.contact-form .gform_wrapper .gform_button:hover { background: var(--accent); }
.contact-form .gform_wrapper .gform_validation_errors,
.contact-form .gform_wrapper .gfield_validation_message,
.contact-form .gform_wrapper .validation_message { color: #b3261e; font-size: 13px; background: none; border: none; padding: 6px 0 0; }
.contact-form .gform_confirmation_message { font-family: 'Fraunces', serif; font-style: italic; font-size: clamp(20px,2.5vw,28px); line-height: 1.35; color: var(--ink); }
@media (max-width: 540px) { .contact-form .gform_wrapper .gform_fields { grid-template-columns: 1fr; } }

/* GF-knop in merkkleur (override GF-themekleur) */
.contact-form .gform_wrapper { --gf-color-primary: #2B1F15; --gf-color-primary-rgb: 43,31,21; --gf-color-primary-contrast: #F5F1EA; --gf-color-primary-darker: #6B4423; --gf-color-primary-darker-rgb: 107,68,35; }
.contact-form .gform_wrapper .gform_footer input[type=submit],
.contact-form .gform_wrapper .gform_footer button,
.contact-form .gform_wrapper input.gform_button,
.contact-form .gform_wrapper .gform_footer .gform-button {
  background: var(--dark-brown) !important; color: var(--off-white) !important; border: none !important; border-radius: 0 !important;
  padding: clamp(16px,2vw,20px) clamp(28px,3vw,40px) !important; font-family: 'Inter', sans-serif !important;
  font-size: 13px !important; letter-spacing: 0.16em !important; text-transform: uppercase !important; font-weight: 500 !important;
}
.contact-form .gform_wrapper .gform_footer input[type=submit]:hover,
.contact-form .gform_wrapper input.gform_button:hover,
.contact-form .gform_wrapper .gform_footer .gform-button:hover { background: var(--accent) !important; }

/* GF-knop definitief in merkkleur — via GF-knopvariabelen + hoge specificiteit */
.contact-form .gform_wrapper {
  --gf-ctrl-btn-bg-color-primary: #2B1F15; --gf-ctrl-btn-bg-color-hover-primary: #6B4423;
  --gf-ctrl-btn-text-color-primary: #F5F1EA; --gf-ctrl-btn-text-color-hover-primary: #F5F1EA;
  --gf-ctrl-btn-border-color-primary: #2B1F15; --gf-ctrl-btn-border-color-hover-primary: #6B4423;
}
.contact-form .gform_wrapper .gform_footer input.gform_button.button {
  background-color: #2B1F15 !important; background-image: none !important; color: #F5F1EA !important;
  border: none !important; border-radius: 0 !important;
}
.contact-form .gform_wrapper .gform_footer input.gform_button.button:hover { background-color: #6B4423 !important; }

/* =========================================================================
   Formulier duidelijker: zichtbare omkaderde velden + prominente knop
   ========================================================================= */
.contact-form .gform_wrapper input[type=text],
.contact-form .gform_wrapper input[type=email],
.contact-form .gform_wrapper input[type=tel],
.contact-form .gform_wrapper select,
.contact-form .gform_wrapper textarea {
  background-color: rgba(245,241,234,0.07) !important;
  border: 1px solid rgba(245,241,234,0.30) !important;
  border-bottom: 1px solid rgba(245,241,234,0.30) !important;
  border-radius: 3px !important;
  padding: 14px 16px !important;
  color: var(--off-white) !important;
  transition: border-color .3s ease, background-color .3s ease;
}
.contact-form .gform_wrapper input[type=text]:focus,
.contact-form .gform_wrapper input[type=email]:focus,
.contact-form .gform_wrapper input[type=tel]:focus,
.contact-form .gform_wrapper select:focus,
.contact-form .gform_wrapper textarea:focus {
  border-color: var(--off-white) !important;
  background-color: rgba(245,241,234,0.12) !important;
  outline: none !important;
}
.contact-form .gform_wrapper ::placeholder { color: rgba(245,241,234,0.5) !important; font-style: italic; }
.contact-form .gform_wrapper .gfield_label { color: rgba(245,241,234,0.92) !important; font-weight: 500 !important; font-size: 12px !important; }
.contact-form .gform_wrapper .gfield_required { color: var(--sand) !important; }
.contact-form .gform_wrapper textarea { min-height: 120px !important; }
.contact-form .gform_wrapper select {
  padding-right: 42px !important;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'><path d='M1 1l6 6 6-6' stroke='%23F5F1EA' fill='none' stroke-width='1.3'/></svg>") !important;
  background-repeat: no-repeat !important; background-position: right 16px center !important; background-size: 12px !important;
}
.contact-form .gform_wrapper select option { color: #1A1410; background: #F5F1EA; }
/* Prominente, contrasterende verzendknop */
.contact-form .gform_wrapper .gform_footer { margin-top: 8px !important; }
.contact-form .gform_wrapper .gform_footer input.gform_button.button {
  background-color: var(--off-white) !important; color: var(--dark-brown) !important; background-image: none !important;
  border: none !important; border-radius: 3px !important; width: 100% !important; justify-content: center;
  padding: 18px 28px !important; font-weight: 600 !important;
}
.contact-form .gform_wrapper .gform_footer input.gform_button.button:hover {
  background-color: var(--accent) !important; color: var(--off-white) !important;
}
