/* ==========================================================================
   Laserdesign Zeeland — stylesheet
   ========================================================================== */

:root {
  --ink: #14171a;
  --ink-soft: #23272b;
  --paper: #faf8f5;
  --paper-dim: #f0ede7;
  --line: #e4dfd6;
  --accent: #2e6b88;
  --accent-dark: #24536a;
  --accent-soft: #dcebf1;
  --text: #1c1e21;
  --text-muted: #5c6167;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 12px 30px -14px rgba(20, 23, 26, 0.35);
  --maxw: 1180px;
  --font-head: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 4.2vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 2.8vw, 2.3rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--text-muted); }

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

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 88px 0; }
@media (max-width: 720px) {
  section { padding: 56px 0; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}

.lede {
  font-size: 1.1rem;
  max-width: 640px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 10px 24px -10px rgba(46, 107, 136, 0.6);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--white); }
.btn-ghost.on-dark { border-color: rgba(255,255,255,0.4); color: var(--white); }
.btn-ghost.on-dark:hover { background: var(--white); color: var(--ink); }
.btn-block { width: 100%; justify-content: center; }

/* ==========================================================================
   Header / nav
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
}
.brand svg { flex: none; }
.brand span em {
  font-style: normal;
  color: var(--accent);
}
.brand-logo {
  height: 42px;
  width: auto;
}
@media (max-width: 480px) {
  .brand-logo { height: 34px; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.92rem;
  white-space: nowrap;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--text);
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-links a:hover { background: var(--paper-dim); }
.nav-links a.active { background: var(--accent); color: var(--white); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-actions .tel {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
}
.header-actions .tel svg { color: var(--accent); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .header-actions .tel span.tel-label { display: none; }
  .nav-toggle { display: block; }

  .site-header.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 20px;
  }
  .site-header.nav-open .nav-links a { padding: 12px 14px; }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  padding: 110px 0 90px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(115deg, rgba(46,107,136,0.16) 0px, rgba(46,107,136,0.16) 1px, transparent 1px, transparent 64px),
    repeating-linear-gradient(25deg, rgba(255,255,255,0.05) 0px, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 90px);
  pointer-events: none;
}
.hero .wrap { position: relative; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}

.hero .eyebrow { color: var(--accent); }
.hero h1 { color: var(--white); }
.hero .lede { color: rgba(255,255,255,0.72); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

.hero-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 28px;
}
.hero-panel .laser-art { width: 100%; height: auto; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.hero-stats div { text-align: left; }
.hero-stats strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--accent);
}
.hero-stats span { font-size: 0.82rem; color: rgba(255,255,255,0.6); }

/* ==========================================================================
   Page header (non-home pages)
   ========================================================================== */

.page-hero {
  background: var(--ink);
  color: var(--white);
  padding: 70px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(46,107,136,0.16) 0px, rgba(46,107,136,0.16) 1px, transparent 1px, transparent 64px);
}
.page-hero .wrap { position: relative; }
.page-hero h1 { color: var(--white); max-width: 720px; }
.page-hero p { color: rgba(255,255,255,0.72); max-width: 620px; }
.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
}
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { text-decoration: underline; }

/* ==========================================================================
   Cards / grids
   ========================================================================== */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .card-grid { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }

.card .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.card a.more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent-dark);
  margin-top: 6px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.section-head .lede { margin: 0; }
@media (max-width: 720px) {
  .section-head { flex-direction: column; align-items: flex-start; }
}

.bg-dim { background: var(--paper-dim); }
.bg-ink { background: var(--ink); color: var(--white); }
.bg-ink h2, .bg-ink h3 { color: var(--white); }
.bg-ink p { color: rgba(255,255,255,0.7); }

/* ==========================================================================
   Materials chips / tags
   ========================================================================== */

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.chip {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
}
.chip.filled {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.material-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 8px;
}
@media (max-width: 900px) { .material-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .material-grid { grid-template-columns: repeat(2, 1fr); } }

.material-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 600;
}
.material-card small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 6px;
  font-size: 0.82rem;
}

.tag-list {
  columns: 3;
  column-gap: 32px;
}
.tag-list li { break-inside: avoid; margin-bottom: 10px; color: var(--text-muted); }
@media (max-width: 720px) { .tag-list { columns: 2; } }
@media (max-width: 480px) { .tag-list { columns: 1; } }

/* ==========================================================================
   Process steps
   ========================================================================== */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

.step {
  position: relative;
  padding-top: 8px;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
}

/* ==========================================================================
   USP row
   ========================================================================== */

.usp-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .usp-row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .usp-row { grid-template-columns: repeat(2, 1fr); } }
.usp {
  text-align: center;
  padding: 20px 10px;
}
.usp .icon {
  width: 44px; height: 44px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: rgba(46,107,136,0.14);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.usp strong { display: block; font-family: var(--font-head); font-size: 0.95rem; }

/* ==========================================================================
   Split layout (image/text)
   ========================================================================== */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 32px; } }
.split.reverse .split-media { order: 2; }
@media (max-width: 900px) { .split.reverse .split-media { order: 0; } }

.split-media {
  border-radius: var(--radius);
  background: var(--ink);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.split-media::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(46,107,136,0.18) 0 1px, transparent 1px 26px);
}
.split-media svg { position: relative; width: 62%; height: auto; }

.list-check { list-style: none; padding: 0; margin: 18px 0; }
.list-check li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text);
}
.list-check svg { flex: none; margin-top: 3px; color: var(--accent); }

/* ==========================================================================
   Portfolio gallery
   ========================================================================== */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery { grid-template-columns: 1fr; } }

.gallery-item {
  border-radius: var(--radius);
  background: var(--paper-dim);
  border: 1px solid var(--line);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-muted);
  text-align: center;
  padding: 20px;
}
.gallery-item strong { color: var(--ink); font-family: var(--font-head); }
.gallery-item svg { color: var(--accent); }

.gallery-photo {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.gallery-photo img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.gallery-photo .gallery-caption { padding: 16px 20px; }
.gallery-photo strong { display: block; color: var(--ink); font-family: var(--font-head); margin-bottom: 4px; }
.gallery-photo span { color: var(--text-muted); font-size: 0.88rem; }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */

.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
}
.faq-q .plus {
  flex: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform 0.2s ease, background 0.2s ease;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--ink);
}
.faq-q .plus::before { width: 10px; height: 1.6px; }
.faq-q .plus::after { width: 1.6px; height: 10px; transition: transform 0.2s ease; }

.faq-item.open .faq-q .plus { background: var(--accent); border-color: var(--accent); }
.faq-item.open .faq-q .plus::before, .faq-item.open .faq-q .plus::after { background: var(--white); }
.faq-item.open .faq-q .plus::after { transform: scaleY(0); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-a-inner { padding-bottom: 22px; max-width: 720px; }
.faq-item.open .faq-a { max-height: 600px; }

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band {
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); margin: 0 0 6px; }
.cta-band p { color: rgba(255,255,255,0.85); margin: 0; }
.cta-band .btn-ghost { border-color: rgba(255,255,255,0.6); color: var(--white); }
.cta-band .btn-ghost:hover { background: var(--white); color: var(--accent-dark); }

/* ==========================================================================
   Forms
   ========================================================================== */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 8px;
  color: var(--ink);
}
input, textarea, select {
  width: 100%;
  padding: 13px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--line);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--accent);
}
textarea { resize: vertical; min-height: 140px; }

.form-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 10px; }
.form-success {
  display: none;
  background: #e9f8ef;
  border: 1px solid #b9e6c9;
  color: #1e6b3c;
  padding: 16px 18px;
  border-radius: 8px;
  font-size: 0.92rem;
  margin-bottom: 18px;
}
.form-success.show { display: block; }
.form-error {
  display: none;
  background: #fdecea;
  border: 1px solid #f3b8b2;
  color: #9c2b21;
  padding: 16px 18px;
  border-radius: 8px;
  font-size: 0.92rem;
  margin-bottom: 18px;
}
.form-error.show { display: block; }

.contact-info-card {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  padding: 34px;
}
.contact-info-card h3 { color: var(--white); }
.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-line svg { flex: none; color: var(--accent); margin-top: 2px; }
.contact-line a:hover { text-decoration: underline; }
.contact-line strong { display: block; color: var(--white); }
.contact-line span, .contact-line a { color: rgba(255,255,255,0.75); font-size: 0.95rem; }

.social-row { display: flex; gap: 12px; margin-top: 24px; }
.social-row a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.social-row a:hover { background: var(--accent); border-color: var(--accent); }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-grid h3 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 12px; font-size: 0.92rem; }
.footer-grid a:hover { color: var(--white); }
.footer-brand { display: flex; align-items: center; gap: 10px; color: var(--white); font-family: var(--font-head); font-weight: 700; margin-bottom: 14px; }
.footer-brand em { font-style: normal; color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 0.82rem;
}
.footer-bottom a:hover { color: var(--white); }

/* Utility */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

/* Skip-to-content link (toegankelijkheid) */
.skip-link {
  position: absolute;
  top: -60px;
  left: 12px;
  z-index: 1000;
  background: var(--accent);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: 12px;
}

/* Zichtbare focus-ring voor toetsenbordgebruikers */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Terug-naar-boven knop */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.15s ease;
  z-index: 500;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--accent);
}
@media (max-width: 560px) {
  .back-to-top { right: 14px; bottom: 14px; width: 42px; height: 42px; }
}
