:root {
  --brown: #6f4a2f;
  --brown-dark: #3b2618;
  --gold: #b9873f;
  --soft: #f6efe7;
  --soft-2: #efe1d2;
  --white: #ffffff;
  --dark: #28211c;
  --muted: #756b63;
  --line: #e2d3c2;
  --rose: #d9a18b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark);
  background: var(--soft);
  line-height: 1.65;
}

header {
  background: rgba(255,255,255,.96);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  display: block;
  width: 220px;
  max-width: 100%;
  height: auto;
}

nav a {
  color: var(--dark);
  text-decoration: none;
  margin-left: 16px;
  font-weight: 700;
  font-size: .95rem;
}

nav a:hover {
  color: var(--gold);
}

.hero {
  padding: 96px 20px;
  background:
    linear-gradient(90deg, rgba(255,250,244,.94) 0%, rgba(255,250,244,.84) 48%, rgba(255,250,244,.62) 100%),
    url("/assets/img/achtergrond-duif.png") right center / cover no-repeat;
}

.hero-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}

.label {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--brown);
  padding: 7px 13px;
  border-radius: 999px;
  font-weight: 800;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.02;
  margin: 0 0 22px;
  letter-spacing: -.05em;
  color: var(--brown-dark);
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  line-height: 1.12;
  margin: 0 0 18px;
  color: var(--brown-dark);
  letter-spacing: -.035em;
}

h3 {
  color: var(--brown-dark);
  margin: 0 0 10px;
}

.hero p {
  font-size: 1.18rem;
  max-width: 720px;
}

.hero-image {
  background: white;
  border-radius: 28px;
  padding: 14px;
  box-shadow: 0 18px 45px rgba(59,38,24,.16);
}

.hero-image img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

.buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: .2s;
}

.btn-primary {
  background: var(--brown);
  color: white;
}

.btn-secondary {
  background: white;
  color: var(--brown-dark);
  border: 1px solid var(--line);
}

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

section {
  padding: 74px 20px;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
}

.white {
  background: white;
}

.highlight {
  background: var(--soft-2);
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  align-items: start;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.card {
  background: white;
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 10px 25px rgba(59,38,24,.08);
}

.card-soft {
  background: #fffaf5;
  border: 1px solid var(--line);
  box-shadow: none;
}

.quote {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brown-dark);
  border-left: 6px solid var(--rose);
  padding-left: 22px;
  margin: 0;
}

.artist-card {
  background: #fffaf5;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 10px 25px rgba(59,38,24,.07);
}

.artist-card img {
  display: block;
  width: 160px;
  height: auto;
  border-radius: 18px;
  margin-bottom: 22px;
}

.process {
  counter-reset: step;
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.process-item {
  background: white;
  border-radius: 18px;
  padding: 20px 22px 20px 70px;
  position: relative;
  box-shadow: 0 10px 25px rgba(59,38,24,.06);
}

.process-item::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 22px;
  top: 20px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--brown);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.choice {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}

.choice strong {
  display: block;
  color: var(--brown-dark);
}

.choice span {
  color: var(--muted);
  font-size: .95rem;
}

.notice {
  background: #fff7ea;
  border-left: 6px solid var(--gold);
  padding: 22px;
  border-radius: 18px;
  margin-top: 26px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.gallery img {
  width: 100%;
  display: block;
  border-radius: 22px;
  box-shadow: 0 10px 25px rgba(59,38,24,.09);
  background: white;
}

.contact-block {
  background:
    radial-gradient(circle at top left, rgba(217,161,139,.35), transparent 30%),
    linear-gradient(135deg, var(--brown-dark) 0%, var(--brown) 100%);
  color: white;
}

.contact-block h2,
.contact-block h3 {
  color: white;
}

.contact-card {
  background: white;
  color: var(--dark);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 16px 38px rgba(0,0,0,.16);
}

.contact-card h3 {
  color: var(--brown-dark);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.contact-list a,
.contact-list span {
  display: block;
  color: var(--brown-dark);
  font-weight: 800;
  text-decoration: none;
}

.contact-list a:hover {
  color: var(--gold);
}

footer {
  background: #1b1511;
  color: white;
  padding: 30px 20px;
}

footer .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

footer a {
  color: white;
}

@media (max-width: 920px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .logo img {
    width: 190px;
  }

  nav a {
    display: inline-block;
    margin-left: 0;
    margin-right: 14px;
    margin-bottom: 8px;
  }

  .hero-grid,
  .two-col,
  .cards,
  .gallery {
    grid-template-columns: 1fr;
  }

  .choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    padding: 72px 20px;
  }
}

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

  section {
    padding: 56px 18px;
  }
}