/* ============================================
   NCA Company — Shared Styles
   ============================================ */

:root {
  --gold-deep: #B8860B;
  --gold: #D4A017;
  --gold-warm: #C8861A;
  --gold-light: #E8C766;
  --gold-pale: #F4E4B8;
  --ink: #0B0B0D;
  --ink-soft: #141418;
  --ink-card: #1A1A1F;
  --line: #2A2A30;
  --cream: #F7F3E9;
  --muted: #9A958A;
  --grad: linear-gradient(135deg, #B8860B 0%, #D4A017 38%, #E8C766 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--ink);
  color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

.gold-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================
   Top Bar
   ============================================ */
.topbar {
  background: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--gold-pale);
}
.topbar .wrap {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 11px 28px;
  flex-wrap: wrap;
}
.topbar span {
  display: flex;
  align-items: center;
  gap: 9px;
  letter-spacing: .01em;
}
.topbar svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
}

/* ============================================
   Header / Navigation
   ============================================ */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 11, 13, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  max-width: 1240px;
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
}
.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}
.brand b {
  font-family: 'Fraunces', serif;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: .02em;
}
.brand small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  letter-spacing: .32em;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
}

.menu {
  display: flex;
  gap: 34px;
  align-items: center;
  font-weight: 500;
  font-size: 15px;
}
.menu > li {
  position: relative;
  list-style: none;
}
.menu a {
  padding: 8px 0;
  transition: color .2s;
  color: var(--cream);
}
.menu a:hover, .menu a.active {
  color: var(--gold-light);
}

.has-drop > a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.8px solid var(--gold);
  border-bottom: 1.8px solid var(--gold);
  transform: rotate(45deg);
  margin-left: 7px;
  vertical-align: 2px;
}

.drop {
  position: absolute;
  top: 130%;
  left: -18px;
  background: var(--ink-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px;
  min-width: 262px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .22s;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
}
.drop::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 24px;
  right: 24px;
  height: 3px;
  background: var(--grad);
  border-radius: 3px;
}
.has-drop:hover .drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.drop li { list-style: none; }
.drop a {
  display: block;
  padding: 11px 14px;
  border-radius: 9px;
  font-size: 14.5px;
  font-weight: 500;
  transition: .18s;
  color: var(--cream);
}
.drop a:hover {
  background: rgba(212, 160, 23, .1);
  color: var(--gold-light);
  padding-left: 20px;
}

.cta-btn {
  background: var(--grad);
  color: var(--ink);
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 50px;
  font-size: 14.5px;
  transition: .25s;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(212, 160, 23, .28);
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212, 160, 23, .42);
  color: var(--ink);
}

.phone {
  display: flex;
  align-items: center;
  gap: 11px;
}
.phone svg {
  width: 30px;
  height: 30px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.6;
}
.phone small {
  display: block;
  font-size: 11.5px;
  color: var(--muted);
}
.phone b {
  font-size: 16px;
  color: var(--gold-light);
  font-family: 'Inter', sans-serif;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 6px;
}
.burger span {
  width: 26px;
  height: 2.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: .3s;
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  padding: 96px 0 120px;
  overflow: hidden;
  background: url('https://images.unsplash.com/photo-1582139329536-e7284fece509?w=1920&q=80&auto=format') center/cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,11,13,.92) 0%, rgba(11,11,13,.8) 50%, rgba(11,11,13,.7) 100%);
  pointer-events: none;
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 30%, rgba(212, 160, 23, .16), transparent 46%),
    radial-gradient(circle at 12% 88%, rgba(184, 134, 11, .12), transparent 50%);
  pointer-events: none;
  z-index: 1;
}
.shield-bg {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 680px;
  height: 680px;
  opacity: .06;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: center;
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 26px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1.5px;
  background: var(--grad);
}

.hero h1 {
  font-size: clamp(40px, 5.6vw, 72px);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
}
.hero p.lead {
  font-size: 18.5px;
  color: #cfc9bb;
  max-width: 480px;
  margin-bottom: 36px;
}

.trust-row {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.trust-row div {
  display: flex;
  flex-direction: column;
}
.trust-row b {
  font-family: 'Fraunces', serif;
  font-size: 30px;
  font-weight: 600;
}
.trust-row span {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .02em;
}

/* ============================================
   Form Card
   ============================================ */
.form-card {
  background: var(--ink-card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 34px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
  position: relative;
}
.form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 34px;
  right: 34px;
  height: 3px;
  background: var(--grad);
  border-radius: 3px;
}
.form-card h3 {
  font-size: 23px;
  margin-bottom: 6px;
}
.form-card .sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 22px;
}

.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--gold-pale);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  background: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--cream);
  font-size: 15px;
  font-family: inherit;
  transition: .2s;
}
.field textarea {
  resize: vertical;
  min-height: 120px;
}
.field input::placeholder,
.field textarea::placeholder { color: #6b675e; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, .16);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.submit {
  width: 100%;
  background: var(--grad);
  color: var(--ink);
  font-weight: 700;
  padding: 15px;
  border: 0;
  border-radius: 11px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 8px;
  transition: .25s;
  font-family: inherit;
}
.submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 160, 23, .4);
}
.submit:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

.form-foot {
  text-align: center;
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 14px;
}

/* ============================================
   Google Reviews Strip
   ============================================ */
.rev {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 28px;
  max-width: 430px;
  margin: 64px auto 0;
}
.rev .g {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 19px;
}
.rev .stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 18px;
}
.rev b { color: var(--gold-light); }

/* ============================================
   Section Base
   ============================================ */
section.block { padding: 104px 0; }

.sec-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 58px;
}
.sec-head .eyebrow { justify-content: center; }
.sec-head h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 18px;
}
.sec-head p {
  color: var(--muted);
  font-size: 17px;
}

/* ============================================
   Services Grid
   ============================================ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.svc {
  background: var(--ink-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 26px;
  transition: .3s;
  position: relative;
  overflow: hidden;
}
.svc::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: .35s;
}
.svc:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 160, 23, .4);
}
.svc:hover::after { transform: scaleX(1); }

.svc .ico {
  width: 54px;
  height: 54px;
  border-radius: 13px;
  background: rgba(212, 160, 23, .12);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.svc .ico svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 1.7;
}
.svc h3 { font-size: 20px; margin-bottom: 10px; }
.svc p { font-size: 14.5px; color: var(--muted); }
.svc .svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  transition: .2s;
}
.svc .svc-link:hover {
  color: var(--gold-light);
  gap: 10px;
}

/* ============================================
   About Split
   ============================================ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/4.4;
  background: linear-gradient(160deg, #1d1d22, #0e0e11);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
}
.about-visual img { width: 62%; opacity: .95; }
.about-visual .ring {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 42%, rgba(212, 160, 23, .18), transparent 60%);
}

.about h2 {
  font-size: clamp(30px, 3.6vw, 44px);
  margin-bottom: 22px;
}
.about p {
  color: #cfc9bb;
  font-size: 16.5px;
  margin-bottom: 18px;
}

.checks {
  list-style: none;
  margin-top: 26px;
  display: grid;
  gap: 14px;
}
.checks li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-size: 15.5px;
}
.checks .ck {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--grad);
  display: grid;
  place-items: center;
  margin-top: 1px;
}
.checks .ck svg {
  width: 13px;
  height: 13px;
  stroke: var(--ink);
  stroke-width: 3;
  fill: none;
}

/* ============================================
   Process Steps
   ============================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: s;
}

.step {
  position: relative;
  padding-top: 24px;
}
.step .n {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  background: var(--grad);
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.step h3 { font-size: 19px; margin-bottom: 9px; }
.step p { font-size: 14.5px; color: var(--muted); }
.step::before {
  content: "";
  position: absolute;
  top: 43px;
  left: 48px;
  right: -24px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.step:last-child::before { display: none; }

/* ============================================
   CTA Band
   ============================================ */
.band {
  background: var(--grad);
  border-radius: 28px;
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 40px;
  align-items: center;
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.band::before {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 300px;
  height: 300px;
  border: 40px solid rgba(11, 11, 13, .07);
  border-radius: 50%;
}
.band h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  color: var(--ink);
  margin-bottom: 12px;
}
.band p {
  color: rgba(11, 11, 13, .78);
  font-size: 17px;
  font-weight: 500;
}
.band .acts {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.band a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: 50px;
  font-size: 16px;
  transition: .25s;
}
.band .b1 {
  background: var(--ink);
  color: var(--gold-light);
}
.band .b1:hover { transform: translateY(-2px); }
.band .b2 {
  background: rgba(11, 11, 13, .12);
  color: var(--ink);
  border: 1.5px solid rgba(11, 11, 13, .3);
}
.band .b2:hover { background: rgba(11, 11, 13, .2); }

/* ============================================
   Breadcrumbs
   ============================================ */
.breadcrumbs, .breadcrumb {
  padding: 20px 0;
  font-size: 14px;
  color: var(--muted);
}
.breadcrumbs ol, .breadcrumb ol {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.breadcrumbs li, .breadcrumb li { display: flex; align-items: center; }
.breadcrumbs li:not(:last-child)::after,
.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin: 0 10px;
  color: var(--line);
}
.breadcrumbs a, .breadcrumb a {
  color: var(--gold);
  transition: color .2s;
}
.breadcrumbs a:hover, .breadcrumb a:hover { color: var(--gold-light); }

/* ============================================
   Page Hero (inner pages)
   ============================================ */
.page-hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,11,13,.9) 0%, rgba(11,11,13,.78) 100%);
  pointer-events: none;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 30%, rgba(212, 160, 23, .12), transparent 46%),
    radial-gradient(circle at 12% 88%, rgba(184, 134, 11, .08), transparent 50%);
  pointer-events: none;
  z-index: 1;
}
.page-hero h1 {
  font-size: clamp(34px, 4.5vw, 56px);
  margin-bottom: 18px;
}
.page-hero p.lead {
  font-size: 18px;
  color: #cfc9bb;
  max-width: 640px;
  margin-bottom: 28px;
}

/* ============================================
   Service Detail Page
   ============================================ */
.dienst-hero-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--line);
  margin-bottom: 40px;
}

.dienst-detail {
  padding: 80px 0;
}
.dienst-content {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 60px;
  align-items: start;
}
.dienst-content h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 20px;
}
.dienst-content p {
  color: #cfc9bb;
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.7;
}
.dienst-content h3 {
  font-size: 22px;
  margin: 32px 0 16px;
}

.voordelen {
  background: var(--ink-card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 34px;
  position: sticky;
  top: 120px;
}
.voordelen h3 {
  font-size: 20px;
  margin-bottom: 20px;
}
.voordelen ul {
  display: grid;
  gap: 14px;
}
.voordelen li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: #cfc9bb;
}
.voordelen .ck {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--grad);
  display: grid;
  place-items: center;
  margin-top: 2px;
}
.voordelen .ck svg {
  width: 12px;
  height: 12px;
  stroke: var(--ink);
  stroke-width: 3;
  fill: none;
}

.andere-diensten {
  padding: 80px 0;
  border-top: 1px solid var(--line);
}

/* ============================================
   Contact & Offerte pages
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 20px;
}
.contact-info p {
  color: #cfc9bb;
  font-size: 16px;
  margin-bottom: 24px;
  line-height: 1.7;
}

.contact-details {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}
.contact-details .item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-details .item-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: rgba(212, 160, 23, .12);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-details .item-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 1.7;
}
.contact-details h4 {
  font-size: 16px;
  margin-bottom: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.contact-details p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 0;
}
.contact-details a {
  color: var(--gold-light);
  transition: color .2s;
}
.contact-details a:hover { color: var(--gold); }

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-item .ico {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 11px;
  background: rgba(212, 160, 23, .12);
  display: grid;
  place-items: center;
  margin-bottom: 0;
}
.contact-item .ico svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 1.7;
}
.contact-item h3 {
  font-size: 16px;
  margin-bottom: 4px;
  line-height: 1.3;
}
.contact-item p {
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 0;
  line-height: 1.5;
}
.contact-item a {
  color: var(--gold-light);
  font-size: 15px;
  transition: color .2s;
}
.contact-item a:hover { color: var(--gold); }

/* Form messages */
.form-message {
  padding: 16px 20px;
  border-radius: 11px;
  margin-bottom: 20px;
  font-size: 15px;
  display: none;
}
.form-message.success {
  display: block;
  background: rgba(52, 168, 83, .15);
  border: 1px solid rgba(52, 168, 83, .3);
  color: #6fcf97;
}
.form-message.error {
  display: block;
  background: rgba(234, 67, 53, .15);
  border: 1px solid rgba(234, 67, 53, .3);
  color: #eb7a70;
}

.field.error input,
.field.error select,
.field.error textarea {
  border-color: #ea4335;
}
.field .error-text {
  color: #eb7a70;
  font-size: 12px;
  margin-top: 4px;
  display: none;
}
.field.error .error-text { display: block; }

/* ============================================
   WhatsApp Floating Button
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .4);
  transition: .3s;
  cursor: pointer;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37, 211, 102, .55);
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}
.whatsapp-float .wa-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--ink-card);
  color: var(--cream);
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: .25s;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .4);
  border: 1px solid var(--line);
}
.whatsapp-float .wa-tooltip::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--ink-card);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 760px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
  .whatsapp-float .wa-tooltip { display: none; }
}

/* ============================================
   Footer
   ============================================ */
footer {
  background: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding: 72px 0 32px;
  margin-top: 104px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.foot-grid .brand { margin-bottom: 18px; }
.foot-grid p {
  color: var(--muted);
  font-size: 14.5px;
  max-width: 280px;
}
.foot-grid h4 {
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}
.foot-grid ul {
  list-style: none;
  display: grid;
  gap: 11px;
}
.foot-grid ul a {
  color: #bdb8ac;
  font-size: 14.5px;
  transition: .18s;
}
.foot-grid ul a:hover { color: var(--gold-light); }

.foot-bottom {
  border-top: 1px solid var(--line);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 13.5px;
}

/* ============================================
   Cookie Banner
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--ink-card);
  border-top: 1px solid var(--line);
  padding: 24px 28px;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, .5);
  transform: translateY(100%);
  transition: transform .4s ease;
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-banner.hidden {
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.cookie-inner .cookie-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(212, 160, 23, .12);
  display: grid;
  place-items: center;
  font-size: 24px;
}
.cookie-text {
  flex: 1;
  min-width: 260px;
}
.cookie-text p {
  font-size: 14.5px;
  color: #cfc9bb;
  line-height: 1.6;
}
.cookie-text a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-text a:hover {
  color: var(--gold);
}
.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-accept {
  background: var(--grad);
  color: var(--ink);
  font-weight: 700;
  padding: 12px 28px;
  border: 0;
  border-radius: 50px;
  font-size: 14.5px;
  cursor: pointer;
  font-family: inherit;
  transition: .25s;
}
.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 160, 23, .35);
}
.cookie-decline {
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  padding: 12px 20px;
  border: 1px solid var(--line);
  border-radius: 50px;
  font-size: 14.5px;
  cursor: pointer;
  font-family: inherit;
  transition: .25s;
}
.cookie-decline:hover {
  border-color: var(--gold);
  color: var(--cream);
}

@media (max-width: 760px) {
  .cookie-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .cookie-inner .cookie-icon { display: none; }
  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step::before { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .phone { display: none; }
  .dienst-content { grid-template-columns: 1fr; }
  .voordelen { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .menu, .phone { display: none; }
  .burger { display: flex; }
  .menu.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--ink-card);
    padding: 20px 28px;
    gap: 6px;
    border-bottom: 1px solid var(--line);
  }
  .menu.open > li { width: 100%; }
  .menu.open .drop {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 4px 0 4px 14px;
    min-width: 0;
  }
  .menu.open .drop::before { display: none; }
  .about, .band, .foot-grid { grid-template-columns: 1fr; }
  .svc-grid, .steps { grid-template-columns: 1fr; }
  .topbar .wrap { gap: 18px; font-size: 12px; }
  .field-row { grid-template-columns: 1fr; }
  .band { padding: 44px 30px; }
  .page-hero { padding: 60px 0 40px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto; }
}
