/* Yomiso, huisstijl: zie /Users/mike/Desktop/website-hustle/yomiso-merk/merkstijl.md */

:root {
  --inkt: #0e1015;
  --papier: #faf9f7;
  --papier-rgb: 250, 249, 247;
  --paneel: #f1efea;
  --oranje: #ff5a2e;
  --oranje-donker: #e14a22;
  --grijs: #75767e;
  --lijn: #e2dfd8;
  --donker: #181a21;
  --donker-2: #21232c;
  --wit: #ffffff;

  --font-kop: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --font-tekst: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-tekst);
  color: var(--inkt);
  background: var(--papier);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-kop);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

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

ul, ol { padding-left: 1.2em; }

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

.muted { color: var(--grijs); }

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

/* Knoppen */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-kop);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primair {
  background: var(--oranje);
  color: var(--wit);
}
.btn-primair:hover { background: var(--oranje-donker); }

.btn-outline {
  background: transparent;
  border-color: var(--inkt);
  color: var(--inkt);
}
.btn-outline:hover { background: var(--inkt); color: var(--wit); }

.btn-outline-licht {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: var(--wit);
}
.btn-outline-licht:hover { background: var(--wit); color: var(--inkt); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(var(--papier-rgb), 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--lijn);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--inkt);
}
.logo-link img { height: 30px; width: auto; flex-shrink: 0; }
.logo-tekst {
  font-family: var(--font-kop);
  font-weight: 600;
  font-size: 1.28rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.footer-logo .logo-tekst { color: var(--wit); }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-desktop a {
  text-decoration: none;
  font-family: var(--font-kop);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--inkt);
  position: relative;
  padding: 4px 0;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--oranje);
  transition: right 0.2s ease;
}
.nav-desktop a:hover::after,
.nav-desktop a[aria-current="page"]::after { right: 0; }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 10px 20px; font-size: 0.9rem; }

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

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 8px 24px 22px;
  border-top: 1px solid var(--lijn);
}
.nav-mobile a {
  text-decoration: none;
  color: var(--inkt);
  font-family: var(--font-kop);
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--lijn);
}
.nav-mobile .btn { margin-top: 14px; }

body.nav-open .nav-mobile { display: flex; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-desktop { display: none; }
  .nav-cta .btn-outline { display: none; }
  .nav-toggle { display: block; }
}

/* Hero */
.hero {
  padding: 84px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero h1 { margin-bottom: 0.42em; }
.hero .subtekst {
  font-size: 1.2rem;
  color: var(--grijs);
  max-width: 46ch;
  margin-bottom: 1.6em;
}
.hero-acties { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-feiten {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.hero-feit strong {
  display: block;
  font-family: var(--font-kop);
  font-size: 1.5rem;
}
.hero-feit span { color: var(--grijs); font-size: 0.9rem; }

@media (max-width: 480px) {
  .hero-feiten { grid-template-columns: 1fr; gap: 16px; }
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 22px;
  background: var(--donker);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-visual img {
  width: 42%;
  opacity: 0.96;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 15% 0%, rgba(255,90,46,0.35), transparent 60%),
    repeating-linear-gradient(115deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 34px);
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 16/10; order: -1; }
}

/* Secties */
section { padding: 76px 0; }
.sectie-kop {
  max-width: 640px;
  margin: 0 0 44px;
}
.sectie-kop.centreer { margin-left: auto; margin-right: auto; text-align: center; }

.panel { background: var(--paneel); }
.donker-sectie {
  background: var(--donker);
  color: var(--wit);
}
.donker-sectie .muted { color: rgba(255,255,255,0.62); }
.donker-sectie .eyebrow { color: var(--oranje); }

/* Kaartgrid diensten */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 860px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.kaart {
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius);
  padding: 30px;
}
.kaart .nummer {
  font-family: var(--font-kop);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--oranje-donker);
  margin-bottom: 14px;
  display: block;
}
.kaart-icoon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--paneel);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--oranje-donker);
}

/* Proces */
.proces-lijst {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: stap;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 960px) {
  .proces-lijst { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .proces-lijst { grid-template-columns: 1fr; }
}
.proces-lijst li {
  counter-increment: stap;
  position: relative;
  padding-top: 46px;
}
.proces-lijst li::before {
  content: counter(stap, decimal-leading-zero);
  font-family: var(--font-kop);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--oranje);
  border: 1.5px solid var(--oranje);
  border-radius: 999px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0; left: 0;
}
.proces-lijst h3 { margin-bottom: 6px; font-size: 1.05rem; }
.proces-lijst p { color: var(--grijs); font-size: 0.94rem; }

/* Prijzen */
.prijs-kaart {
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius);
  padding: 34px;
  display: flex;
  flex-direction: column;
}
.prijs-kaart.uitgelicht {
  border-color: var(--inkt);
  box-shadow: 0 18px 40px -20px rgba(14,16,21,0.35);
  position: relative;
}
.prijs-kaart .label-uitgelicht {
  position: absolute;
  top: -13px; left: 30px;
  background: var(--oranje);
  color: var(--wit);
  font-family: var(--font-kop);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.prijs-bedrag {
  font-family: var(--font-kop);
  font-size: 2.1rem;
  font-weight: 600;
  margin: 10px 0 2px;
}
.prijs-bedrag span { font-size: 1rem; font-weight: 500; color: var(--grijs); }
.prijs-kaart ul { list-style: none; padding: 0; margin: 20px 0 26px; display: flex; flex-direction: column; gap: 10px; }
.prijs-kaart li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.95rem; }
.prijs-kaart li::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 999px;
  background: var(--oranje);
  margin-top: 8px;
  flex-shrink: 0;
}
.prijs-kaart .btn { margin-top: auto; }

/* Concepten */
.concept-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-kop);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--inkt);
  color: var(--wit);
  padding: 5px 11px;
  border-radius: 999px;
}

.browserframe {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--lijn);
  background: var(--wit);
}
.browserframe-balk {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  background: var(--paneel);
  border-bottom: 1px solid var(--lijn);
}
.browserframe-balk .stip {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--lijn);
}
.browserframe-balk .url {
  margin-left: 8px;
  font-size: 0.72rem;
  color: var(--grijs);
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: 999px;
  padding: 3px 12px;
  flex: 1;
}
.browserframe img { width: 100%; height: auto; }

.concept-kaart {
  border: 1px solid var(--lijn);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--wit);
  display: flex;
  flex-direction: column;
}
.concept-kaart .browserframe { border: none; border-radius: 0; }
.concept-kaart-body { padding: 24px 26px 28px; }
.concept-kaart-body .concept-label { margin-bottom: 12px; }
.concept-kaart-body h3 { margin-bottom: 6px; }
.concept-kaart-body p { color: var(--grijs); font-size: 0.95rem; margin-bottom: 16px; }
.concept-kaart-body a { font-family: var(--font-kop); font-weight: 600; font-size: 0.92rem; text-decoration: none; color: var(--inkt); }
.concept-kaart-body a:hover { color: var(--oranje-donker); }

/* FAQ */
.faq-lijst { display: flex; flex-direction: column; gap: 12px; max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--lijn);
  border-radius: var(--radius-sm);
  background: var(--wit);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-family: var(--font-kop);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--oranje);
  flex-shrink: 0;
  transition: transform 0.15s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-antwoord {
  padding: 0 22px 20px;
  color: var(--grijs);
}

/* CTA-band */
.cta-band {
  background: var(--donker);
  color: var(--wit);
  border-radius: 22px;
  padding: 56px;
  text-align: center;
}
.cta-band h2 { color: var(--wit); }
.cta-band p { color: rgba(255,255,255,0.68); max-width: 52ch; margin: 0 auto 28px; }
.cta-band .hero-acties { justify-content: center; }
@media (max-width: 640px) {
  .cta-band { padding: 40px 24px; border-radius: 18px; }
}

/* Footer */
.site-footer {
  background: var(--donker);
  color: rgba(255,255,255,0.78);
  padding: 60px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}
.footer-grid h4 {
  color: var(--wit);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-grid a { text-decoration: none; color: rgba(255,255,255,0.78); }
.footer-grid a:hover { color: var(--oranje); }
.footer-logo .logo-link { margin-bottom: 14px; }
.footer-logo img { height: 26px; }
.footer-onder {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

/* WhatsApp zwevende knop */
.wa-knop {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px -8px rgba(0,0,0,0.4);
  transition: transform 0.15s ease;
}
.wa-knop:hover { transform: translateY(-2px) scale(1.03); }
.wa-knop svg { width: 28px; height: 28px; }

/* Breadcrumb */
.broodkruimel {
  font-size: 0.85rem;
  color: var(--grijs);
  padding: 18px 0 0;
}
.broodkruimel a { text-decoration: none; color: var(--grijs); }
.broodkruimel a:hover { color: var(--inkt); }

/* Concept-demo banner (op de losse voorbeeldpagina's) */
.demo-balk {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--inkt);
  color: var(--wit);
  font-family: var(--font-kop);
  font-size: 0.85rem;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  flex-wrap: wrap;
}
.demo-balk a { color: var(--oranje); text-decoration: none; font-weight: 600; }
.demo-balk a:hover { text-decoration: underline; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-optie {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--lijn);
}
.contact-optie:last-child { border-bottom: none; }
.contact-optie .kaart-icoon { flex-shrink: 0; margin-bottom: 0; }
.contact-optie h3 { margin-bottom: 4px; font-size: 1rem; }
.contact-optie a { text-decoration: none; font-weight: 600; }
.contact-optie a:hover { color: var(--oranje-donker); }

form.formulier { display: flex; flex-direction: column; gap: 16px; }
.veld { display: flex; flex-direction: column; gap: 6px; }
.veld label { font-family: var(--font-kop); font-size: 0.85rem; font-weight: 600; }
.veld input, .veld textarea, .veld select {
  font-family: var(--font-tekst);
  font-size: 0.98rem;
  padding: 12px 14px;
  border: 1.5px solid var(--lijn);
  border-radius: var(--radius-sm);
  background: var(--wit);
  color: var(--inkt);
}
.veld input:focus, .veld textarea:focus, .veld select:focus {
  outline: none;
  border-color: var(--oranje);
}
.veld textarea { resize: vertical; min-height: 120px; }

.vestiging-info {
  font-size: 0.82rem;
  color: var(--grijs);
  margin-top: 6px;
}

/* Over mij */
.over-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 860px) {
  .over-grid { grid-template-columns: 1fr; }
}
.over-portret {
  aspect-ratio: 4/5;
  background: var(--paneel);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grijs);
  font-family: var(--font-kop);
  font-size: 0.9rem;
  text-align: center;
  padding: 20px;
}

.waarde-lijst { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 18px; }
.waarde-lijst li { display: flex; gap: 14px; }
.waarde-lijst strong { display: block; font-family: var(--font-kop); }

/* 404 */
.err404 {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.err404 img { width: 70px; margin-bottom: 24px; opacity: 0.85; }

/* Placeholder-markering voor plaatshouders */
.plaatshouder {
  border-bottom: 1.5px dashed var(--oranje);
}
