@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400..800&family=Inter:wght@400;500;600&display=swap');

:root {
  --bg: #FFF8EC;
  --bg-raised: #FFFFFF;
  --ink: #14120F;
  --ink-soft: #55534C;

  --orange: #FF9A3D;
  --orange-soft: #FFE1B8;
  --pink: #FF3EA5;
  --pink-soft: #FFD3EC;
  --teal: #4DE6C8;
  --teal-soft: #CFF9EF;
  --yellow: #FFD23D;
  --navy: #1B1450;

  --line: #EFE2CE;
  --radius: 20px;
  --wrap: 1160px;
  --ease: cubic-bezier(.19,1,.22,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, .display {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0;
}

p { max-width: 62ch; color: var(--ink-soft); }

a { color: inherit; }

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

/* ---- Nav ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 248, 236, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--ink);
}

.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 21px;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
  padding-bottom: 4px;
  transition: color .2s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 3px;
  background: var(--pink);
  border-radius: 4px;
}

.nav-cta {
  background: var(--ink);
  color: var(--bg);
  padding: 11px 22px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
  box-shadow: 0 0 0 2px var(--ink);
}

.nav-cta:hover { background: var(--pink); box-shadow: 0 0 0 2px var(--pink); transform: translateY(-2px) rotate(-1deg); }

.nav-toggle {
  display: none;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 8px 12px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

/* ---- Sections ---- */
section { padding: 110px 0; position: relative; }
section.tight { padding: 70px 0; }

.band {
  padding: 110px 0;
}
.band.orange { background: var(--orange-soft); }
.band.pink { background: var(--pink-soft); }
.band.teal { background: var(--teal-soft); }
.band.dark { background: var(--navy); color: #fff; }
.band.dark p { color: #C9C6F5; }
.band.dark h2 { color: #fff; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  background: var(--yellow);
  padding: 6px 14px;
  border-radius: 100px;
  margin: 0 0 20px;
  transform: rotate(-2deg);
}

/* ---- Hero ---- */
.hero {
  padding: 0;
  background: linear-gradient(150deg, var(--yellow) 0%, var(--orange) 55%, var(--pink) 100%);
  border-bottom: 2px solid var(--ink);
  overflow: hidden;
  position: relative;
}

.hero-inner {
  padding: 140px 0 100px;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(46px, 6vw, 88px);
  color: var(--ink);
}

.hero-sub {
  font-size: 20px;
  color: #3A2A12;
  margin: 26px 0 36px;
  max-width: 46ch;
  font-weight: 500;
}

.hero-card {
  background: var(--navy);
  border: 3px solid var(--ink);
  border-radius: 24px;
  padding: 32px;
  transform: rotate(4deg);
  box-shadow: 12px 14px 0 rgba(20,18,15,0.9);
  color: #fff;
}

.hero-card .hc-label { font-size: 13px; color: #B9B4F5; font-weight: 700; }
.hero-card .hc-line { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 22px; margin: 14px 0; line-height: 1.1; }
.hero-card .hc-badge { display: inline-block; background: var(--teal); color: var(--navy); font-weight: 700; font-size: 13px; padding: 6px 14px; border-radius: 100px; margin-top: 10px; }

.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 30px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  border: 2.5px solid var(--ink);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}

.btn-primary {
  background: var(--ink);
  color: var(--bg);
  box-shadow: 5px 5px 0 rgba(20,18,15,0.35);
}
.btn-primary:hover { transform: translate(-2px,-3px) rotate(-1deg); background: var(--navy); box-shadow: 7px 8px 0 rgba(20,18,15,0.35); }

.btn-outline {
  background: #fff;
  color: var(--ink);
}
.btn-outline:hover { transform: translate(-2px,-3px) rotate(1deg); background: var(--teal); }

/* ---- Style showcase ---- */
.showcase-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.showcase-head h2 { font-size: clamp(32px, 4.2vw, 46px); max-width: 16ch; }
.showcase-head p { margin: 0; }

.style-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.style-card {
  border-radius: var(--radius);
  padding: 28px 24px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 2.5px solid var(--ink);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  box-shadow: 6px 6px 0 rgba(20,18,15,0.9);
}

.style-card:hover { transform: translate(-3px,-6px) rotate(-1deg); box-shadow: 9px 11px 0 rgba(20,18,15,0.9); }

.style-card .mock-label {
  font-size: 12px;
  font-weight: 700;
  opacity: .7;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.style-card .mock-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 25px;
  line-height: 1.05;
  margin: 14px 0;
}

.style-card .mock-btn {
  align-self: flex-start;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 100px;
  border: 2px solid var(--ink);
}

.sc-1 { background: var(--teal-soft); }
.sc-1 .mock-title { color: var(--navy); }
.sc-1 .mock-btn { background: var(--navy); color: #fff; border-color: var(--navy); }

.sc-2 { background: var(--pink-soft); }
.sc-2 .mock-title { color: #7A0F45; font-family: 'Inter', sans-serif; font-weight: 700; }
.sc-2 .mock-btn { background: var(--pink); color: #fff; border-color: var(--pink); }

.sc-3 { background: var(--navy); }
.sc-3 .mock-label { color: #A9A4F0; }
.sc-3 .mock-title { color: #fff; }
.sc-3 .mock-btn { background: var(--yellow); color: var(--navy); border-color: var(--yellow); }

.sc-4 { background: var(--orange-soft); }
.sc-4 .mock-title { color: #7A3A00; }
.sc-4 .mock-btn { background: var(--orange); color: #fff; border-color: var(--orange); }

/* ---- Fade / rise in on scroll ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---- Portfolio teaser / card ---- */
.portfolio-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 2.5px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-raised);
  text-decoration: none;
  color: inherit;
  box-shadow: 8px 8px 0 rgba(20,18,15,0.9);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.portfolio-card:hover { transform: translate(-3px,-5px); box-shadow: 11px 13px 0 rgba(20,18,15,0.9); }

.portfolio-card .pf-visual {
  background: var(--navy);
  color: var(--yellow);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
}

.portfolio-card .pf-visual .pf-mark {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 28px;
}

.portfolio-card .pf-visual .pf-tag {
  font-size: 14px;
  color: #B9B4F5;
}

.portfolio-card .pf-info {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.portfolio-card .pf-info h3 { font-size: 28px; margin-bottom: 12px; }
.portfolio-card .pf-info .pf-link {
  margin-top: 20px;
  font-weight: 700;
  color: var(--pink);
  font-size: 15px;
}

/* ---- Werkwijze ---- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.step {
  padding: 26px 22px;
  border: 2.5px solid var(--ink);
  border-radius: var(--radius);
  background: #fff;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  box-shadow: 5px 5px 0 rgba(20,18,15,0.9);
}
.step:hover { transform: translate(-2px,-4px); box-shadow: 8px 10px 0 rgba(20,18,15,0.9); }
.step .step-num {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  background: var(--pink);
  padding: 3px 12px;
  border-radius: 100px;
}
.step h3 { font-size: 19px; margin: 14px 0 8px; }
.step p { font-size: 15px; }

/* ---- Pricing ---- */
.price-block {
  background: var(--navy);
  color: #fff;
  border-radius: 24px;
  border: 3px solid var(--ink);
  padding: 56px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: 10px 10px 0 rgba(20,18,15,0.5);
}

.price-block h2 { color: #fff; font-size: clamp(28px, 3.4vw, 38px); }
.price-block p { color: #C9C6F5; }

.price-tag {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 58px;
  font-weight: 800;
  color: var(--yellow);
}

.price-tag span { font-size: 18px; color: #C9C6F5; font-weight: 500; font-family: 'Inter', sans-serif; }

.price-note { font-size: 14px; color: #A6A2E0; margin-top: 14px; }

/* ---- CTA band ---- */
.cta-band {
  text-align: left;
  background: var(--yellow);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.cta-band .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 70px 32px;
}

.cta-band h2 { font-size: clamp(30px, 4vw, 44px); max-width: 14ch; }

/* ---- Footer ---- */
footer {
  padding: 40px 0;
  background: var(--bg);
}

footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-soft);
}

footer a { text-decoration: none; color: var(--ink-soft); font-weight: 600; }
footer a:hover { color: var(--pink); }

/* ---- Page header (subpages) ---- */
.page-head {
  padding: 90px 0 70px;
  background: linear-gradient(150deg, var(--teal-soft) 0%, var(--pink-soft) 100%);
  border-bottom: 2px solid var(--ink);
}
.page-head h1 { font-size: clamp(42px, 5.6vw, 66px); }
.page-head p { font-size: 19px; margin-top: 20px; color: #3A2A12; font-weight: 500; }

/* ---- Over mij ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-grid .initials {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  border: 3px solid var(--ink);
  background: linear-gradient(155deg, var(--pink) 0%, var(--orange) 55%, var(--yellow) 100%);
  display: flex;
  align-items: flex-end;
  padding: 32px;
  box-shadow: 10px 10px 0 rgba(20,18,15,0.9);
  transform: rotate(-2deg);
}

.about-grid .initials span {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 68px;
  color: #fff;
}

.about-grid p { font-size: 18px; }

/* ---- Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-item {
  display: block;
  padding: 26px 28px;
  border: 2.5px solid var(--ink);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  margin-bottom: 18px;
  background: #fff;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  box-shadow: 5px 5px 0 rgba(20,18,15,0.9);
}

.contact-item:hover { transform: translate(-2px,-4px); background: var(--teal-soft); box-shadow: 8px 10px 0 rgba(20,18,15,0.9); }

.contact-item .c-label {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 6px;
  font-weight: 600;
}

.contact-item .c-value {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 27px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-note {
  background: var(--navy);
  color: #fff;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 8px 8px 0 rgba(20,18,15,0.5);
}

.contact-note h3 { font-size: 20px; margin-bottom: 12px; color: #fff; }
.contact-note p { font-size: 15px; color: #C9C6F5; }

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 18px;
    background: var(--bg);
    border-bottom: 2px solid var(--ink);
    padding: 24px 32px;
  }
  .nav.open .nav-links { display: flex; }
  .nav-cta { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; padding: 100px 0 70px; }
  .hero-card { transform: rotate(0); }
  .style-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .portfolio-card { grid-template-columns: 1fr; }
  .price-block { grid-template-columns: 1fr; padding: 36px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-grid .initials { aspect-ratio: 16/9; transform: none; }
  .contact-grid { grid-template-columns: 1fr; }
  section, .band { padding: 64px 0; }
}

@media (max-width: 520px) {
  .style-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
