/* Klijnhoutenlampen — warm, ambachtelijk design */

:root {
  --wood-dark: #2c2416;
  --wood: #3d3124;
  --wood-light: #5c4d3c;
  --cream: #f8f5f0;
  --cream-dark: #efe9e0;
  --warm-white: #fffcf7;
  --text: #2c2416;
  --text-soft: #5c4d3c;
  --text-muted: #8c7d6d;
  --border: rgba(44, 36, 22, 0.12);
  --border-strong: rgba(44, 36, 22, 0.2);
  --shadow-soft: 0 4px 24px rgba(44, 36, 22, 0.08);
  --shadow-medium: 0 8px 40px rgba(44, 36, 22, 0.12);
  --font: Georgia, "Times New Roman", serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-soft);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font);
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
}

a { color: var(--wood); }
img { display: block; max-width: 100%; height: auto; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Layout */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 680px;
}

/* Header */
.header {
  padding: 16px 0;
  background: var(--wood-dark);
  color: var(--cream);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--cream);
}

.logo__icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: contain;
}

.logo__text {
  display: flex;
  flex-direction: column;
}

.logo__name {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.logo__name span {
  font-weight: 600;
}

.logo__sub {
  margin: 1px 0 0;
  font-family: var(--font-sans);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(248, 245, 240, 0.6);
}

.nav {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.nav a {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  color: rgba(248, 245, 240, 0.75);
  padding: 8px 14px;
  border-radius: 4px;
  transition: all 0.15s ease;
}

.nav a:hover {
  color: var(--cream);
  background: rgba(248, 245, 240, 0.1);
}

.nav a[aria-current="page"] {
  color: var(--wood-dark);
  background: var(--cream);
}

/* Hero — grote foto centraal */
.hero {
  padding: 0;
  background: var(--wood-dark);
  color: var(--cream);
}

.hero__inner {
  display: grid;
  min-height: 85vh;
}

@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr 1.1fr;
  }
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 24px;
}

@media (min-width: 900px) {
  .hero__content {
    padding: 80px 64px 80px 48px;
  }
}

.hero__label {
  display: inline-block;
  margin: 0 0 20px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(248, 245, 240, 0.5);
}

.hero__title {
  margin: 0 0 24px;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--cream);
}

.hero__text {
  margin: 0 0 32px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(248, 245, 240, 0.8);
  max-width: 440px;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__image {
  position: relative;
  min-height: 400px;
  background: var(--wood);
}

.hero__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn--light {
  background: var(--cream);
  color: var(--wood-dark);
  border-color: var(--cream);
}

.btn--light:hover {
  background: var(--warm-white);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(248, 245, 240, 0.3);
}

.btn--outline:hover {
  border-color: var(--cream);
  background: rgba(248, 245, 240, 0.1);
}

.btn--dark {
  background: var(--wood-dark);
  color: var(--cream);
  border-color: var(--wood-dark);
}

.btn--dark:hover {
  background: var(--wood);
}

.btn--secondary {
  background: transparent;
  color: var(--wood);
  border-color: var(--border-strong);
}

.btn--secondary:hover {
  border-color: var(--wood);
  background: var(--cream-dark);
}

/* Intro sectie */
.intro-section {
  padding: 80px 0;
  background: var(--cream);
  text-align: center;
}

.intro-section__title {
  margin: 0 0 16px;
  font-size: 14px;
  font-family: var(--font-sans);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.intro-section__text {
  margin: 0 auto;
  font-size: 28px;
  line-height: 1.5;
  color: var(--text);
  max-width: 720px;
}

/* Features */
.features {
  padding: 80px 0;
  background: var(--warm-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features__grid {
  display: grid;
  gap: 48px;
}

@media (min-width: 700px) {
  .features__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.feature {
  text-align: center;
  padding: 32px 24px;
}

.feature__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: var(--wood-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--cream);
  stroke-width: 1.5;
  fill: none;
}

.feature__title {
  margin: 0 0 12px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
}

.feature__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-soft);
}

/* Galerij preview */
.gallery-preview {
  padding: 80px 0;
  background: var(--cream);
}

.gallery-preview__header {
  text-align: center;
  margin-bottom: 48px;
}

.gallery-preview__title {
  margin: 0 0 12px;
  font-size: 36px;
}

.gallery-preview__text {
  margin: 0;
  color: var(--text-soft);
  font-size: 18px;
}

.gallery-preview__grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 700px) {
  .gallery-preview__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery-preview__cta {
  text-align: center;
  margin-top: 48px;
}

/* Cards */
.card {
  background: var(--warm-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.card__image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream-dark);
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover .card__image img {
  transform: scale(1.03);
}

.card__body {
  padding: 20px 24px 24px;
}

.card__title {
  margin: 0 0 8px;
  font-size: 20px;
  color: var(--text);
}

.card__text {
  margin: 0;
  font-size: 15px;
  color: var(--text-muted);
}

/* CTA sectie */
.cta-section {
  padding: 100px 0;
  background: var(--wood-dark);
  color: var(--cream);
  text-align: center;
}

.cta-section__title {
  margin: 0 0 16px;
  font-size: 40px;
  color: var(--cream);
}

.cta-section__text {
  margin: 0 auto 32px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(248, 245, 240, 0.8);
  max-width: 520px;
}

.cta-section__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* Over sectie op home */
.about-preview {
  padding: 80px 0;
  background: var(--cream-dark);
}

.about-preview__grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 800px) {
  .about-preview__grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.about-preview__image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.about-preview__image img {
  width: 100%;
  display: block;
}

.about-preview__content {
  max-width: 480px;
}

.about-preview__title {
  margin: 0 0 20px;
  font-size: 32px;
}

.about-preview__text {
  margin: 0 0 12px;
  font-size: 17px;
  line-height: 1.7;
}

.about-preview__list {
  margin: 20px 0 28px;
  padding-left: 20px;
}

.about-preview__list li {
  margin-bottom: 8px;
  color: var(--text-soft);
}

/* Footer */
.footer {
  padding: 64px 0 32px;
  background: var(--wood-dark);
  color: var(--cream);
}

.footer__grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 600px) {
  .footer__grid {
    grid-template-columns: 1.5fr 1fr;
  }
}

.footer__col strong {
  display: block;
  margin-bottom: 16px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(248, 245, 240, 0.5);
}

.footer__col p {
  margin: 0 0 10px;
  font-size: 15px;
  color: rgba(248, 245, 240, 0.8);
}

.footer__col a {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(248, 245, 240, 0.7);
  text-decoration: none;
}

.footer__links a:hover {
  color: var(--cream);
}

.footer__bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(248, 245, 240, 0.1);
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(248, 245, 240, 0.4);
}

.footer__bottom p { margin: 0; }

/* Page layout */
.page {
  padding: 60px 0 80px;
}

.page__title {
  margin: 0 0 16px;
  font-size: 42px;
}

.page__intro {
  margin: 0 0 40px;
  font-size: 20px;
  color: var(--text-soft);
  max-width: 600px;
}

.prose p { margin: 0 0 16px; }

.prose h2 {
  margin: 48px 0 16px;
  font-size: 28px;
}

.prose h2:first-child { margin-top: 0; }

.prose ul {
  margin: 0 0 20px;
  padding-left: 24px;
}

.prose li { margin-bottom: 8px; }

.prose a {
  color: var(--wood);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Gallery page */
.gallery {
  display: grid;
  gap: 32px;
}

@media (min-width: 700px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

.empty {
  padding: 48px;
  text-align: center;
  color: var(--text-muted);
  border: 2px dashed var(--border);
  border-radius: 8px;
  background: var(--warm-white);
}

/* Info boxes */
.info-box {
  margin: 32px 0;
  padding: 28px 32px;
  background: var(--warm-white);
  border-radius: 8px;
  border-left: 4px solid var(--wood);
}

.info-box strong {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.info-box p { margin: 0 0 8px; }
.info-box p:last-child { margin: 0; }
.info-box a { color: var(--wood); }

/* Steps */
.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  padding-left: 56px;
  margin-bottom: 28px;
  min-height: 40px;
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--cream);
  background: var(--wood-dark);
  border-radius: 50%;
}

/* Contact cards */
.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.contact-card {
  flex: 1;
  min-width: 240px;
  padding: 24px 28px;
  background: var(--warm-white);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.contact-card strong {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.contact-card p { margin: 0 0 8px; color: var(--text); }
.contact-card a { color: var(--wood); }

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  padding: 12px 20px;
  background: var(--wood-dark);
  color: var(--cream);
  z-index: 9999;
  font-family: var(--font-sans);
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}
