:root {
  --bg: #0b0b0d;
  --brown: #16130d;
  --panel: #111118;
  --panel-2: #171720;
  --text: #f0e8d8;
  --muted: #c8bda8;
  --gold: #c79a4a;
  --gold-strong: #d9b369;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  --radius: 14px;
  --radius-lg: 20px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  background: var(--brown);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  touch-action: pan-y;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  letter-spacing: 0.5px;
}

.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 6vw;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0) 100%);
  border-bottom: none;
}

.hamburger {
  position: absolute;
  right: 6vw;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--gold);
  background: rgba(199, 154, 74, 0.12);
  display: grid;
  place-items: center;
  gap: 4px;
  padding: 10px 11px;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold);
}

.hamburger:hover {
  background: rgba(199, 154, 74, 0.18);
  transform: translateY(-1px);
}

.brand {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.brand-logo {
  width: 176px;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
}

.brand-name {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 20px;
  font-weight: 700;
}

.nav-links {
  display: none;
  justify-content: center;
  gap: 18px;
  font-weight: 600;
  letter-spacing: 0.4px;
  flex-direction: column;
}

.nav-links.open {
  position: absolute;
  top: 80px;
  right: 6vw;
  width: 220px;
  max-width: 92vw;
  padding: 16px 12px;
  flex-direction: column;
  background: rgb(11 11 13 / 0%);
  gap: 10px;
  transform: translateY(0);
  text-align: left;
  display: flex;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(199, 154, 74, 0.3);
  border-radius: 14px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.45);
}

.hero {
  padding-top: 120px;
}

.nav-links a {
  padding: 12px 10px;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  color: var(--gold);
  background: rgba(199, 154, 74, 0.12);
}

main {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 0 80px;
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  padding: 140px 0 110px;
  margin: 0;
  background: linear-gradient(135deg, rgba(11, 11, 13, 0.72), rgba(11, 11, 13, 0.8)),
    url("img/keuken.webp") center/cover no-repeat;
  border-bottom: none;
  box-shadow: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(199, 154, 74, 0.08), rgba(11, 11, 13, 0.6));
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(11, 11, 13, 0) 0%, rgba(22, 19, 13, 0.9) 80%, var(--brown) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 720px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

.hero-inner {
  width: min(1400px, 94vw);
  margin: 0 auto;
}

.hero-panel {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 32px 0 28px;
  box-shadow: none;
}

.eyebrow {
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  font-size: 12px;
  display: inline-block;
  margin-bottom: 8px;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 4.4vw, 3.3rem);
  margin: 6px 0 12px;
}

.lead {
  color: var(--muted);
  margin: 0 0 18px;
  font-size: 18px;
}

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

.hero-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.hero-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--gold), #a97c32);
  color: #0c0c0c;
  box-shadow: 0 12px 30px rgba(199, 154, 74, 0.35);
}

.btn.ghost {
  border-color: rgba(199, 154, 74, 0.5);
  color: var(--gold);
  background: rgba(199, 154, 74, 0.08);
}

.btn.full {
  width: 100%;
}

.btn:hover {
  transform: translateY(-1px);
}

.kvk {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  margin: 0;
  padding: 70px 0;
  background: var(--brown);
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.section-inner {
  width: 100%;
  padding: 12px 6vw 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.section-inner > * {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  margin: 6px 0 10px;
  font-size: clamp(2rem, 3.4vw, 2.5rem);
}

.section-header p {
  color: var(--muted);
  margin: 0 0 12px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.service-card {
  background: #f0e8d800;
  border: 1px solid rgb(171 126 54);
  border-radius: var(--radius);
  padding: 20px;
  display: grid;
  gap: 10px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
  animation: floatUp 0.8s ease both;
}

.service-card .icon {
  width: 42px;
  height: 42px;
  color: var(--gold);
}

.service-card .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.service-card h3 {
  margin: 0;
}

.service-card ul {
  padding-left: 18px;
  margin: 0;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.step-card {
  position: relative;
  background: rgba(17, 17, 24, 0.12);
  border: 1px solid rgba(199, 154, 74, 0.22);
  border-radius: var(--radius);
  padding: 18px 16px 16px 16px;
  min-height: 160px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  animation: floatUp 0.8s ease both;
}

.step-number {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(199, 154, 74, 0.16);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-weight: 800;
}

.step-card h3 {
  margin: 4px 0 6px;
}

.step-card p {
  color: var(--muted);
  margin: 0;
}

.portfolio .slider {
  position: relative;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  width: 100%;
  overflow: hidden;
}

.slider-window {
  overflow: hidden;
  border-radius: 0;
  flex: initial;
  width: 100%;
  border: none;
  background: transparent;
  position: relative;
}

.slider-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  transition: transform 0.45s ease;
  touch-action: pan-x;
}

.slide {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  animation: floatUp 0.8s ease both;
}

.slide img {
  width: 100%;
  height: clamp(260px, 55vw, 520px);
  object-fit: cover;
  cursor: zoom-in;
  background: #0e0e12;
  border-radius: 0;
}

.slide-body {
  padding: 16px;
  background: linear-gradient(180deg, rgb(31, 25, 14), rgb(31, 25, 14));
  border-top: 1px solid rgba(199, 154, 74, 0.12);
}

.slide-body p {
  color: var(--muted);
  margin: 6px 0 0;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: none;
  background: rgba(199, 154, 74, 0.12);
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  display: grid;
  place-items: center;
}

.slider-btn:hover {
  background: rgba(199, 154, 74, 0.18);
  transform: translateY(-1px);
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
}

.slider-dots {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  justify-content: center;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(199, 154, 74, 0.5);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.slider-dots .dot.active {
  background: var(--gold);
  transform: scale(1.05);
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.lightbox.open {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(3px);
}

.lightbox-content {
  position: relative;
  max-width: min(960px, 92vw);
  max-height: 86vh;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
}

.lightbox-content img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0e0e12;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: rgba(0, 0, 0, 0.45);
  color: #f6e9cb;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  font-size: 22px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, transform 0.15s ease;
}

.lightbox-close:hover {
  background: rgba(0, 0, 0, 0.6);
  transform: translateY(-1px);
}

.reviews .review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(17, 17, 24, 0.12);
  border: 1px solid rgba(199, 154, 74, 0.22);
  border-radius: var(--radius);
  padding: 18px 16px 16px 16px;
  min-height: 170px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  animation: floatUp 0.8s ease both;
}

.quote {
  position: absolute;
  top: -16px;
  left: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(199, 154, 74, 0.16);
  color: var(--gold);
  font-size: 26px;
}

.review-card p {
  margin: 12px 0 10px;
  color: var(--muted);
  flex: 1;
}

.reviewer {
  font-weight: 700;
  color: var(--text);
  display: inline-block;
  margin-top: auto;
}

.stars {
  display: inline-flex;
  gap: 6px;
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 1px;
  margin-top: 6px;
}

.fade-up {
  animation: fadeUp 0.9s ease 0.05s both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.99);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.contact {
  display: block;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.section.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 11, 13, 0.9) 0%, rgba(11, 11, 13, 0.58) 55%, rgba(11, 11, 13, 0.28) 82%, rgba(11, 11, 13, 0.1) 100%),
    linear-gradient(110deg, rgba(11, 11, 13, 0.82) 20%, rgba(11, 11, 13, 0.5) 52%, rgba(11, 11, 13, 0.12) 80%, rgba(11, 11, 13, 0) 100%),
    url("img/keuken1.webp") center/cover no-repeat;
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}

.section.contact::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 120px;
  background: linear-gradient(180deg, rgba(11, 11, 13, 0) 0%, var(--brown) 90%);
  pointer-events: none;
  z-index: -1;
}

.contact-inner {
  width: min(980px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
  text-align: center;
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  color: var(--muted);
  justify-items: center;
}

.contact-form {
  background: rgba(17, 17, 24, 0.12);
  border: 1px solid rgba(199, 154, 74, 0.22);
  border-radius: var(--radius);
  padding: 18px;
  display: grid;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
  animation: floatUp 0.8s ease both;
}

.contact-form label {
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(199, 154, 74, 0.28);
  background: rgba(17, 17, 24, 0.12);
  color: var(--text);
  font-family: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(199, 154, 74, 0.45);
}

.form-note {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

.footer {
  margin: 40px 0 30px;
  padding: 18px 6vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  border-top: 1px solid rgba(199, 154, 74, 0.15);
}

.floating-whatsapp {
  position: fixed;
  right: max(22px, env(safe-area-inset-right));
  bottom: max(22px, env(safe-area-inset-bottom));
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #30c96b, #1fa855);
  color: #0c1521;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 20px rgba(18, 168, 78, 0.4);
  border: 2px solid #0c1521;
  z-index: 1200;
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
}

@media (max-width: 1024px) {
  .hero {
    padding: 60px 0 72px;
  }
}

@media (max-width: 820px) {
  .nav-links.open {
    right: 5vw;
    width: 240px;
    padding: 18px 14px;
  }

  .nav-links a {
    font-size: 18px;
    padding: 12px;
  }
}

@media (max-width: 720px) {
  .section,
  .hero {
    padding: 24px;
  }

  .portfolio .slider {
    flex-direction: column;
    align-items: stretch;
  }

  .slider-window {
    flex: initial;
    width: 100%;
  }

  .slider-controls {
    justify-content: center;
  }

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

@media (max-width: 640px) {
  body {
    background: var(--brown);
  }

  .section-inner {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .nav {
    padding: 14px 5vw;
    justify-content: center;
  }

  .brand {
    margin: 0 auto;
  }

  .hero {
    padding: 130px 6vw 42px;
    background-position: center;
    background-size: cover;
  }

  .hero-inner {
    width: 100%;
    padding: 0;
  }

  .hero-content {
    margin: 0 auto;
    text-align: center;
    padding-top: 16px;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 7vw, 2.6rem);
    line-height: 1.2;
    margin: 10px 0 16px;
  }

  .lead {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .hero-list {
    text-align: left;
    margin: 14px auto 18px;
    max-width: 520px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 520px;
    margin: 0 auto;
    gap: 10px;
  }

  .section-header {
    text-align: center;
  }

  .section-header p {
    margin-left: auto;
    margin-right: auto;
  }

  .section {
    padding: 52px 0;
  }

  .section.service {
    padding-top: 32px;
  }

  .section-header h2 {
    font-size: clamp(1.6rem, 6vw, 2.1rem);
  }

  .section-header p {
    font-size: 15px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .slide img {
    height: 280px;
    object-position: center;
    object-fit: cover;
  }

  .slider {
    gap: 6px;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 16px;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .floating-whatsapp {
    right: max(16px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
  }
}
