/* =========================
   RESET + BASIS
   ========================= */
/* Reset: haalt standaard margins/paddings weg en maakt box sizing voorspelbaar */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-weight: 700; /* jij wilde overal vet */
}

/* Basis link/image gedrag (super handig) */
a{ color: inherit; text-decoration: none; }
img{ display: block; max-width: 100%; }

/* (Optioneel) smooth scroll als je anchor links gebruikt */
html{ scroll-behavior: smooth; }


/* ===== Responsive helpers ===== */
.desktop-only{ display: flex; }
.mobile-only{ display: none; }

@media (max-width: 820px){
  .desktop-only{ display: none !important; }
  .mobile-only{ display: inline-flex !important; }

  /* op mobiel: grid zodat hamburger rechts past */
  .navbar{
    padding: 0 18px;
    grid-template-columns: 1fr auto 1fr; /* logo blijft mooi center */
  }
}

/* =========================
   NAVBAR (fixed + glass)
   ========================= */
.navbar{
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 72px;
  z-index: 50;

  display: grid;
  grid-template-columns: 1fr auto 1fr; /* links - logo - rechts */
  align-items: center;

  padding: 0 40px;

  background: rgba(10,10,10,0.18);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Links: knoppen naast elkaar */
.nav-left{
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Center: logo echt in het midden */
.nav-center{ justify-self: center; }

/* Rechts */
.nav-right{
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Navbar links */
.nav-btn{
  color: black;
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  text-decoration: none;
}

.nav-btn:hover{
  border-bottom-color: rgba(255,255,255,0.7);
}

/* Rond logo “WG” */
.logo-mark{
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;

  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  color: black;

  font-weight: 800;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;

  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
  text-decoration: none;
}

/* Navbar scrolled state */
.navbar.scrolled{
  background: rgba(248,246,243,0.95);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.navbar.scrolled a{
  color: #1a1814;
}

/* =========================
   MOBILE MENU (hamburger + side menu)
   ========================= */

/* Hamburger: standaard verbergen (desktop) */
.hamburger{
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;

  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;

  margin-left: 10px;
}

.hamburger span{
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.92);
  border-radius: 2px;
}

/* Overlay */
.menu-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
  z-index: 60;
}

/* Side menu */
.side-menu{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(86vw, 360px);

  background: rgba(15,15,15,0.96);
  backdrop-filter: blur(10px);
  border-left: 1px solid rgba(255,255,255,0.08);

  transform: translateX(100%);
  transition: transform .22s ease;
  z-index: 70;

  padding: 18px 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.side-menu-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.side-title{
  color: rgba(255,255,255,0.92);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
}

.menu-close{
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.92);
  font-size: 20px;
  cursor: pointer;
}

.side-link{
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;

  padding: 12px 10px;
  border-radius: 12px;
}
.side-link:hover{
  background: rgba(255,255,255,0.08);
}

/* Open state */
.menu-open .menu-overlay{
  opacity: 1;
  pointer-events: auto;
}
.menu-open .side-menu{
  transform: translateX(0);
}

/* =========================
   MOBILE BEHAVIOR
   ========================= */
@media (max-width: 768px){

  /* Logo perfect gecentreerd: nav-left blijft ruimte innemen maar is onzichtbaar */
  .nav-left{
    visibility: hidden;
  }

  /* Atelier link weg op mobiel (menu zit in side menu) */
  .desktop-link{
    display: none !important;
  }

  /* Hamburger tonen op mobiel */
  .hamburger{
    display: inline-flex;
  }
}

/* Hamburger wordt donker wanneer navbar scrolled is */
.navbar.scrolled .hamburger span{
  background: #1a1814;
}
/* =========================
   HERO (full screen image + gradient overlay)
   ========================= */
.hero{
  position: relative;
  height: 100vh;         /* desktop */
  min-height: 100svh;    /* mobiel “safe height” */
  width: 100%;
  overflow: hidden;
}

/* Achtergrondfoto in hero */
.hero-img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1200px; /* of wat jij gebruikt */
  opacity: 0.05; /* dit is de magic */
  pointer-events: none;
    filter: blur(0.5px);
}

/* Gradient overlay: maakt tekst leesbaar */
.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.38) 35%,
    rgba(0,0,0,0.55) 100%
  );
}

/* Tekst in hero (gecentreerd) */
.hero-text{
  position: relative;
  z-index: 2;
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  color: #fff;
  padding: 0 24px;

  max-width: 900px;
  margin: 0 auto;
}

.hero-text h1{
  font-size: clamp(42px, 6vw, 84px);
  letter-spacing: 1.2px;
  line-height: 1.05;
  margin: 0 0 14px 0;
  text-shadow: 0 10px 30px rgba(0,0,0,0.55);
}

.hero-text p{
  font-size: clamp(16px, 2vw, 22px);
  letter-spacing: 0.6px;
  opacity: 0.92;
  text-shadow: 0 8px 22px rgba(0,0,0,0.45);
}

/* Optionele CTA knop in hero */
.hero-cta{
  margin-top: 24px;
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: #16110c;
  font-weight: 600; /* klein verschil mag voor knop */
}
.hero-cta:hover{ background: #fff; }

.services-preview{
  padding: 110px 80px;
  background: #ffffff;
}

.services-preview-inner{
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.services-preview-header{
  max-width: 720px;
  margin: 0 auto 70px auto;
}

.services-preview-header h2{
  font-size: 36px;
  font-weight: 600;
  line-height: 1.15;
  color: rgba(26,24,20,0.92);
  margin: 0 0 18px 0;
}

.services-preview-header p{
  font-size: 16px;
  line-height: 1.75;
  color: rgba(26,24,20,0.65);
}

.services-preview-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: left;
  margin-bottom: 60px;
}

.service-item{
  border: 1px solid rgba(26,24,20,0.08);
  padding: 32px;
  background: #f8f6f3;
}

.service-item h3{
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: rgba(26,24,20,0.9);
}

.service-item p{
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(26,24,20,0.65);
  margin: 0;
}

.services-preview-cta{
  display: flex;
  justify-content: center;
}

.services-button{
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;

  background: rgba(26,24,20,0.9);
  color: #fff;
  transition: all 0.3s ease;
}

.services-button:hover{
  background: rgba(26,24,20,0.75);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 980px){
  .services-preview{
    padding: 80px 30px;
  }

  .services-preview-grid{
    grid-template-columns: 1fr;
  }

  .services-preview-header h2{
    font-size: 30px;
  }
}

/* =========================
   contact
   ========================= */
   .contact{
  padding: 120px 80px;
  background: #ffffff;
}

.contact-inner{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: start;
}

.contact-left .eyebrow{
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(26,24,20,0.55);
  margin-bottom: 14px;
}

.contact-left h2{
  font-size: 38px;
  line-height: 1.15;
  color: rgba(26,24,20,0.92);
  font-weight: 600;
  margin: 0 0 16px 0;
}

.contact-lead{
  font-size: 16px;
  line-height: 1.75;
  color: rgba(26,24,20,0.65);
  margin: 0 0 34px 0;
  max-width: 640px;
}

.contact-info{
  border: 1px solid rgba(26,24,20,0.08);
  padding: 26px;
  background: #ffffff;
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
}

.info-row{
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(26,24,20,0.08);
}

.info-row:last-child{
  border-bottom: none;
}

.info-label{
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(26,24,20,0.55);
}

.info-value{
  font-size: 14.5px;
  color: rgba(26,24,20,0.85);
  font-weight: 600;
  text-decoration: none;
}

a.info-value:hover{
  opacity: 0.7;
}

.contact-note{
  background: #f8f6f3;
  border: 1px solid rgba(26,24,20,0.08);
  padding: 18px 22px;
}

.contact-note p{
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(26,24,20,0.7);
}

.contact-note strong{
  color: rgba(26,24,20,0.9);
}

/* Form */
.contact-form{
  background: #f8f6f3;
  border: 1px solid rgba(26,24,20,0.08);
  padding: 34px;
}

.form-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.field label{
  display: block;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(26,24,20,0.55);
  margin-bottom: 10px;
}

.field input,
.field textarea{
  width: 100%;
  padding: 14px 14px;
  border: 1px solid rgba(26,24,20,0.12);
  background: rgba(255,255,255,0.75);
  color: rgba(26,24,20,0.88);
  font-size: 14.5px;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.field input:focus,
.field textarea:focus{
  border-color: rgba(26,24,20,0.25);
  background: rgba(255,255,255,0.95);
}

.field textarea{
  resize: vertical;
  min-height: 140px;
}

.field.full{
  margin-bottom: 18px;
}

.contact-btn{
  width: 100%;
  padding: 14px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;

  background: rgba(26,24,20,0.9);
  color: #fff;

  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;

  transition: all 0.25s ease;
}

.contact-btn:hover{
  background: rgba(26,24,20,0.75);
  transform: translateY(-2px);
}

.contact-small{
  margin: 14px 0 0 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(26,24,20,0.55);
}

/* Responsive */
@media (max-width: 980px){
  .contact{
    padding: 80px 30px;
  }

  .contact-inner{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-left h2{
    font-size: 32px;
  }

  .form-grid{
    grid-template-columns: 1fr;
  }
}
/* --- Base (zorgt dat alles matcht) --- */
:root{
  --ink: rgba(26,24,20,0.92);
  --muted: rgba(26,24,20,0.65);
  --muted2: rgba(26,24,20,0.55);
  --line: rgba(26,24,20,0.08);
  --soft: #f8f6f3;
  --max: 1200px;
  --padX: 80px;
  --padY: 110px;
}

.section{ padding: var(--padY) var(--padX); }
.container{ max-width: var(--max); margin: 0 auto; }

.h2{
  font-size: 38px;
  line-height: 1.15;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 16px 0;
}

.p{
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
}

.p.small{ font-size: 14.5px; line-height: 1.7; }

.eyebrow{
  display:inline-block;
  font-size:12px;
  letter-spacing:1.6px;
  text-transform:uppercase;
  color: var(--muted2);
  margin-bottom:14px;
}

.card{
  border: 1px solid var(--line);
  background: #fff;
}
/* =========================
   TO TOP BUTTON
   ========================= */
.to-top{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border-radius: 999px;

  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(26,24,20,0.65);
  color: rgba(255,255,255,0.95);

  display: grid;
  place-items: center;

  cursor: pointer;
  z-index: 9999;
  backdrop-filter: blur(10px);

  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.to-top.show{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.to-top:hover{ background: rgba(26,24,20,0.85); }
/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.25s ease;
}

.btn-dark{
  background: rgba(26,24,20,0.9);
  color: #fff;
}

.btn-dark:hover{
  background: rgba(26,24,20,0.75);
  transform: translateY(-2px);
}

.btn-outline{
  border: 1px solid rgba(26,24,20,0.18);
  color: rgba(26,24,20,0.86);
  background: rgba(255,255,255,0.55);
}

.btn-outline:hover{
  background: rgba(26,24,20,0.06);
}

/* --- WHY --- */
.why{ background: var(--soft); }
.why-inner{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: start;
}

.why-lead{ margin-bottom: 40px; max-width: 720px; }

.why-points{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.why-point{ padding: 26px; background: #fff; }
.why-point h3{ margin: 0 0 10px; font-size: 16px; color: var(--ink); }
.why-point p{ margin: 0; font-size: 14.5px; line-height: 1.7; color: var(--muted); }

.why-right .why-card{
  background: #fff;
  padding: 36px;
}

.why-card h3{ margin: 0 0 14px; font-size: 18px; color: var(--ink); }

.why-list{
  list-style: none;
  padding: 0;
  margin: 0 0 22px 0;
  display: grid;
  gap: 10px;
}

.why-list li{
  font-size: 14.5px;
  color: rgba(26,24,20,0.72);
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}

.why-list li::before{
  content:"";
  width:6px;height:6px;border-radius:50%;
  background: rgba(26,24,20,0.35);
  position:absolute;left:0;top:9px;
}

.why-mini{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.mini-box{ padding: 16px 18px; background: #fff; }
.mini-title{
  display:block;
  font-size:12px;
  letter-spacing:1.2px;
  text-transform:uppercase;
  color: var(--muted2);
  margin-bottom:8px;
}
.mini-value{ display:block; font-size:14.5px; color: rgba(26,24,20,0.85); font-weight:600; }

/* --- PROJECTS / CASE --- */
.projects{ background: #fff; }
.projects-header{
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px auto;
}

.projects-grid{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: start;
}

.project-story{ display: grid; gap: 18px; }
.project-block{ padding: 34px; background: #fff; }
.project-block h3{ margin:0 0 12px; font-size:18px; color: var(--ink); }
.project-block p{ margin:0; font-size:15px; line-height:1.75; color: var(--muted); }

.project-list{
  list-style:none;
  padding:0;margin:0;
  display:grid;gap:10px;
}

.project-list li{
  font-size:14.5px;
  color: rgba(26,24,20,0.72);
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}

.project-list li::before{
  content:"";
  width:6px;height:6px;border-radius:50%;
  background: rgba(26,24,20,0.35);
  position:absolute;left:0;top:9px;
}

.project-card{
  background: var(--soft);
  padding: 38px;
}

.project-card h3{ margin:0 0 8px; font-size:18px; color: var(--ink); }

.project-metrics{ display: grid; gap: 12px; margin: 18px 0 20px; }

.metric{
  display:grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.metric:last-child{ border-bottom:none; }

.metric-label{
  font-size:12px;
  letter-spacing:1.2px;
  text-transform:uppercase;
  color: var(--muted2);
}
.metric-value{
  font-size:14.5px;
  color: rgba(26,24,20,0.82);
  font-weight:600;
}

.project-images{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 10px 0 18px;
}

.project-image{
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}

.project-image img{
  width:100%;
  height:140px;
  object-fit: cover;
  display:block;
}

/* --- ABOUT --- */
.about{ background: #fff; }
.about-inner{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: start;
}

.about-lead{ margin: 0 0 34px 0; max-width: 720px; }

.about-values{ display:grid; gap: 18px; margin-bottom: 26px; }
.about-value{ padding: 26px; background:#fff; }
.about-value h3{ margin:0 0 10px; font-size:16px; color: var(--ink); }
.about-value p{ margin:0; font-size:14.5px; line-height:1.7; color: var(--muted); }

.about-actions{ display:flex; gap: 14px; flex-wrap: wrap; }

.about-card{
  background: var(--soft);
  overflow:hidden;
}

.about-photo{ height: 260px; background: rgba(26,24,20,0.06); }
.about-photo img{ width:100%; height:100%; object-fit: cover; display:block; }

.about-card-body{ padding: 34px; }
.about-card-body h3{ margin:0 0 6px; font-size:18px; color: var(--ink); }

.about-meta{ display:grid; gap: 12px; margin: 18px 0; }
.meta-item{
  display:grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.meta-item:last-child{ border-bottom:none; }

.meta-label{
  font-size:12px;
  letter-spacing:1.2px;
  text-transform:uppercase;
  color: var(--muted2);
}
.meta-value{
  font-size:14.5px;
  color: rgba(26,24,20,0.82);
  font-weight:600;
}

/* --- CTA --- */
.cta{ background: var(--soft); text-align:center; }
.cta-inner{ max-width: 1000px; }
.cta-text{ max-width: 640px; margin: 0 auto 34px auto; }
.cta-actions{ display:flex; justify-content:center; gap: 16px; flex-wrap: wrap; }

/* Responsive */
@media (max-width: 980px){
  :root{ --padX: 30px; --padY: 80px; }
  .h2{ font-size: 32px; }

  .why-inner,
  .projects-grid,
  .about-inner{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-points{ grid-template-columns: 1fr; }
  .project-images{ grid-template-columns: 1fr; }
  .project-image img{ height: 180px; }
  .about-photo{ height: 320px; }
}
/* Contact sectie */
.contact{
  padding: 120px 80px;
  background: #ffffff;
}

.contact-inner{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: start;
}

.contact-lead{
  font-size: 16px;
  line-height: 1.75;
  color: rgba(26,24,20,0.65);
  margin: 0 0 34px 0;
  max-width: 640px;
}

/* Info box */
.contact-info{
  border: 1px solid rgba(26,24,20,0.08);
  padding: 26px;
  background: #ffffff;
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
}

.info-row{
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(26,24,20,0.08);
}

.info-row:last-child{
  border-bottom: none;
}

.info-label{
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(26,24,20,0.55);
}

.info-value{
  font-size: 14.5px;
  color: rgba(26,24,20,0.85);
  font-weight: 600;
  text-decoration: none;
}

a.info-value:hover{
  opacity: 0.7;
}

.contact-note{
  background: #f8f6f3;
  border: 1px solid rgba(26,24,20,0.08);
  padding: 18px 22px;
}

.contact-note p{
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(26,24,20,0.7);
}

.contact-note strong{
  color: rgba(26,24,20,0.9);
}

/* Form */
.contact-form{
  background: #f8f6f3;
  border: 1px solid rgba(26,24,20,0.08);
  padding: 34px;
}

.form-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.field label{
  display: block;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(26,24,20,0.55);
  margin-bottom: 10px;
}

.field input,
.field textarea{
  width: 100%;
  padding: 14px 14px;
  border: 1px solid rgba(26,24,20,0.12);
  background: rgba(255,255,255,0.75);
  color: rgba(26,24,20,0.88);
  font-size: 14.5px;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.field input:focus,
.field textarea:focus{
  border-color: rgba(26,24,20,0.25);
  background: rgba(255,255,255,0.95);
}

.field textarea{
  resize: vertical;
  min-height: 140px;
}

.field.full{
  margin-bottom: 18px;
}

.contact-btn{
  width: 100%;
  padding: 14px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;

  background: rgba(26,24,20,0.9);
  color: #fff;

  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;

  transition: all 0.25s ease;
}

.contact-btn:hover{
  background: rgba(26,24,20,0.75);
  transform: translateY(-2px);
}

.contact-btn:disabled{
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.contact-small{
  margin: 14px 0 0 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(26,24,20,0.55);
}

/* Honeypot verbergen */
.hp-field{
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* Modal */
.form-modal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.form-modal.is-open{
  display: block;
}

.form-modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.form-modal-card{
  position: relative;
  max-width: 520px;
  margin: 12vh auto 0 auto;
  background: #fff;
  border: 1px solid rgba(26,24,20,0.10);
  padding: 28px;
}

.form-modal-card h3{
  margin: 0 0 10px 0;
  font-size: 18px;
  color: rgba(26,24,20,0.92);
}

.form-modal-card p{
  margin: 0 0 18px 0;
  line-height: 1.7;
  color: rgba(26,24,20,0.65);
  font-size: 14.5px;
}

.form-modal-actions{
  display: flex;
  justify-content: flex-end;
}

.modal-ok{
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: rgba(26,24,20,0.9);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.25s ease;
}

.modal-ok:hover{
  background: rgba(26,24,20,0.75);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 980px){
  .contact{
    padding: 80px 30px;
  }

  .contact-inner{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-grid{
    grid-template-columns: 1fr;
  }
}
.footer{
  background: #ffffff;
  border-top: 1px solid rgba(26,24,20,0.08);
  padding: 70px 80px 30px;
}

.footer-inner{
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(26,24,20,0.08);
}

.footer-col h4{
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(26,24,20,0.55);
  margin-bottom: 18px;
}

.footer-col a{
  display: block;
  text-decoration: none;
  font-size: 14.5px;
  color: rgba(26,24,20,0.78);
  margin-bottom: 12px;
  transition: opacity 0.25s ease;
}

.footer-col a:hover{
  opacity: 0.65;
}

.footer-brand img{
  height: 34px;
  width: auto;
  margin-bottom: 14px;
}

.footer-text{
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(26,24,20,0.62);
  max-width: 320px;
}

.footer-muted{
  display: block;
  font-size: 14.5px;
  color: rgba(26,24,20,0.62);
  margin-bottom: 10px;
}

.footer-bottom{
  padding-top: 22px;
  text-align: center;
  font-size: 13.5px;
  color: rgba(26,24,20,0.62);
}

/* Responsive */
@media (max-width: 1050px){
  .footer{
    padding: 60px 30px 25px;
  }

  .footer-top{
    grid-template-columns: 1fr 1fr;
  }

  .footer-text{
    max-width: 100%;
  }
}

@media (max-width: 560px){
  .footer-top{
    grid-template-columns: 1fr;
  }
}