:root {
  --bg: #f4f1ea;
  --paper: #ffffff;
  --ink: #18211f;
  --muted: #65706d;
  --brand: #08746f;
  --brand-dark: #073f3c;
  --accent: #e09a35;
  --accent-soft: #fff0d8;
  --rose: #d85b52;
  --mint: #e4f4ef;
  --line: rgba(24, 33, 31, 0.12);
  --shadow: 0 22px 60px rgba(14, 32, 29, 0.14);
  font-family: Inter, Lato, Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(244, 241, 234, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--brand-dark);
  font-weight: 900;
  text-decoration: none;
}

.brand img {
  width: 68px;
  height: 68px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(7, 63, 60, 0.18);
}

.brand span {
  display: grid;
  gap: 0;
  line-height: 1.05;
}

.brand strong {
  font-size: 1.08rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: rgba(8, 116, 111, 0.1);
  color: var(--brand-dark);
}

.site-nav .nav-cta {
  background: var(--brand-dark);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
  min-height: calc(100vh - 73px);
  padding: clamp(52px, 8vw, 108px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(130deg, rgba(7, 63, 60, 0.97), rgba(8, 116, 111, 0.88)),
    url("https://primary.jwwb.nl/pexels/42/4252517.jpeg") center/cover;
  color: #fff;
}

.hero-brand-logo {
  width: min(260px, 52vw);
  margin: 0 0 26px;
  border: 8px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f5bd68;
}

.hero h1,
.section-heading h2,
.quote-copy h2,
.about-card h2,
.contact h2 {
  margin: 0;
  font-family: Merriweather, Georgia, serif;
  line-height: 1.08;
}

.hero h1 {
  max-width: 860px;
  font-size: clamp(2.5rem, 5.6vw, 5.6rem);
}

.hero-text {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.04rem, 2vw, 1.3rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  background: var(--accent);
  color: #201608;
}

.button-secondary {
  background: #fff;
  color: var(--brand-dark);
}

.button-small {
  min-height: 42px;
  padding: 10px 14px;
  font-size: 0.92rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
}

.hero-showcase {
  display: grid;
  grid-template-columns: 1fr 0.44fr;
  gap: 14px;
  align-items: stretch;
}

.showcase-main,
.showcase-stack img {
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.88);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.showcase-main {
  position: relative;
  background: #fff;
}

.showcase-main img,
.showcase-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-main img {
  aspect-ratio: 0.82;
}

.logo-showcase {
  display: grid;
  place-items: center;
  min-height: 560px;
  background: #efe2cc;
}

.logo-showcase img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.brand-badge {
  position: absolute;
  right: 16px;
  bottom: 16px;
  max-width: 220px;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--brand-dark);
  color: #fff;
  font-weight: 900;
  text-align: center;
}

.showcase-stack {
  display: grid;
  gap: 14px;
}

.price-tag {
  position: absolute;
  right: 14px;
  bottom: 14px;
  min-width: 104px;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--accent);
  color: #211508;
  text-align: center;
}

.price-tag span {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
}

.price-tag strong {
  display: block;
  font-size: 1.35rem;
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.category-strip a {
  padding: 24px clamp(18px, 4vw, 38px);
  background: var(--paper);
  text-decoration: none;
}

.category-strip strong,
.category-strip span {
  display: block;
}

.category-strip strong {
  color: var(--brand-dark);
  font-size: 1.1rem;
}

.category-strip span {
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading h2,
.quote-copy h2,
.about-card h2,
.contact h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.section-heading p,
.quote-copy p,
.about-card p,
.contact p {
  color: var(--muted);
  font-size: 1.05rem;
}

.shop-section {
  background: var(--bg);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1280px;
  margin: 0 auto;
}

.product-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(14, 32, 29, 0.08);
}

.product-card.featured {
  border-color: rgba(224, 154, 53, 0.65);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #dfe5df;
}

.product-body {
  padding: 20px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.product-meta span {
  padding: 5px 8px;
  border-radius: 8px;
  background: var(--mint);
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.product-meta strong {
  color: var(--rose);
  white-space: nowrap;
}

.product-card h3 {
  margin: 0 0 8px;
  color: var(--brand-dark);
  font-size: 1.2rem;
}

.product-card p {
  min-height: 78px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.98rem;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: var(--brand-dark);
  color: #fff;
}

.quote-copy p,
.contact p {
  color: rgba(255, 255, 255, 0.78);
}

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

.check-list li {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--paper);
  border-radius: 8px;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--brand-dark);
  font-weight: 900;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf6;
  color: var(--ink);
  font: inherit;
}

.quote-form textarea {
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: 14px;
}

.process-section {
  background: var(--paper);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.process-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf6;
}

.process-grid span {
  color: var(--accent);
  font-weight: 900;
}

.process-grid h3 {
  margin: 12px 0 8px;
  color: var(--brand-dark);
}

.process-grid p {
  margin: 0;
  color: var(--muted);
}

.gallery-section {
  background: #eaf3ef;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 1120px;
  margin: 0 auto;
}

.gallery button {
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #dde5df;
  cursor: pointer;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 180ms ease;
}

.gallery button:hover img {
  transform: scale(1.04);
}

.about-section {
  background: var(--bg);
}

.about-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(18px, 3vw, 28px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.about-card img {
  width: 100%;
  aspect-ratio: 1.1;
  border-radius: 8px;
  object-fit: cover;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  background: var(--brand-dark);
  color: #fff;
}

.contact-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 72px);
  background: #151d1b;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.lightbox {
  width: min(920px, calc(100vw - 28px));
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.78);
}

.lightbox img {
  width: 100%;
  max-height: 86vh;
  border-radius: 8px;
  object-fit: contain;
  background: #111;
}

.lightbox-close {
  position: absolute;
  top: -46px;
  right: 0;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  cursor: pointer;
}

@media (max-width: 1060px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero,
  .quote-section,
  .about-card,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

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

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

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .brand span {
    font-size: 0.95rem;
  }

  .brand img {
    width: 56px;
    height: 56px;
  }

  .hero-showcase {
    grid-template-columns: 1fr;
  }

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

  .category-strip,
  .product-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .button,
  .contact-actions {
    width: 100%;
  }

  .product-card p {
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
  }
}
