:root {
  --blue: #454b78;
  --paper: #ffffff;
  --black: #000000;
  --white: #ffffff;
  --gray-line: rgba(0, 0, 0, 0.08);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #dddddd;
  color: var(--black);
  font-family: "Inter", sans-serif;
  line-height: 1.5;
}


.page-shell {
  min-height: 100vh;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.website-frame {
  width: 100%;
  max-width: 1240px;
  background: var(--paper);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.topbar {
  background: var(--paper);
  border-top: 10px solid var(--black);
  border-bottom: 10px solid var(--black);
  display: grid;
  grid-template-columns: 120px 1fr 180px;
  align-items: center;
  padding: 12px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.topbar-center,
.topbar-right {
  text-align: center;
}

.topbar-right {
  text-align: right;
}

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

.dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--black);
  display: inline-block;
}


.panel {
  border: 6px solid var(--black);
  overflow: hidden;
  position: relative;
}

.panel-light {
  background: var(--paper);
  color: var(--black);
}

.panel-dark {
  background: var(--black);
  color: var(--white);
}

.panel-topline {
  display: grid;
  grid-template-columns: 50px 1fr 100px;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border-bottom: 4px solid var(--black);
}

.panel-topline-dark {
  border-bottom: 4px solid var(--paper);
  color: var(--paper);
}


.hero {
  min-height: 720px;
  position: relative;
  padding: 40px 40px 30px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-grid-line {
  position: absolute;
  left: 40px;
  top: 80px;
  width: 160px;
  height: 78%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  z-index: 0;
}

.hero-script {
  position: absolute;
  top: 55px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Great Vibes", cursive;
  font-size: 110px;
  color: var(--black);
  z-index: 3;
  pointer-events: none;
}

.hero-title {
  font-family: "Oswald", sans-serif;
  font-size: clamp(7rem, 14vw, 14rem);
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: var(--blue);
  text-align: center;
  margin-top: 110px;
  position: relative;
  z-index: 1;
}

.hero-star {
  position: absolute;
  right: 100px;
  top: 135px;
  font-size: 64px;
  font-weight: 700;
  z-index: 3;
}

.hero-image-wrapper {
  position: absolute;
  left: 70%;
  top: 250px;
  transform: translateX(-50%);
  width: 250px;
  z-index: 2;
}

.hero-image {
  width: 100%;
  display: block;
  filter: grayscale(100%) contrast(1.1);
  object-fit: cover;
  transition: filter 0.3s ease; /* zorgt voor een vloeiende overgang */
}

.hero-image:hover {
  filter: grayscale(0%) contrast(1.1);
}

.hero-text {
  position: absolute;
  left: 60px;
  bottom: 55px;
  max-width: 440px;
  z-index: 3;
}

.hero-text p {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.72);
  line-height: 1.7;
}


.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.content-grid > .panel {
  min-height: 320px;
}


.section-title {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.9;
}

.section-title.blue {
  color: var(--blue);
  font-size: clamp(3rem, 5vw, 5rem);
}

.section-title.white {
  color: var(--white);
  font-size: clamp(3rem, 5vw, 5rem);
}

.section-title.dark {
  color: var(--black);
}

.script-note,
.script-accent {
  font-family: "Great Vibes", cursive;
}

.script-note {
  font-size: 52px;
  color: var(--black);
}

.script-accent {
  font-size: 54px;
  line-height: 1;
}

.blue-script {
  color: var(--blue);
}

.dark-script {
  color: var(--black);
}

.small-copy {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.72);
}

.light-copy {
  color: rgba(255, 255, 255, 0.82);
}


.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  padding: 22px;
  align-items: center;
}

.about-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bw-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(1.12);
}


.strengths-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
  padding: 22px;
  min-height: 100%;
}

.strengths-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.strengths-portrait {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--paper);
}

.strengths-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  padding-top: 12px;
}

.experience-header {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  padding: 22px 22px 10px;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 10px 22px 22px;
  gap: 18px;
}

.experience-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.experience-column h3 {
  font-size: 16px;
  font-weight: 700;
}

.experience-column p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.72);
}

.experience-images {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  min-height: 300px;
}

.experience-images img {
  height: 300px;
}


.project-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 20px;
  padding: 22px;
  align-items: center;
}

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

.project-image-box {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.15);
}



.project-two-layout {
  padding: 22px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: end;
}

.project-two-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.project-two-images img {
  height: 180px;
}

.project-two-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}


.contact-panel {
  min-height: 310px;
  padding: 30px 22px;
  display: grid;
  grid-template-columns: 100px 1fr;
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 16px;
  position: relative;
}

.contact-star {
  font-size: 44px;
  align-self: center;
  justify-self: center;
}

.contact-text {
  text-align: center;
}

.center-script {
  text-align: center;
  margin-bottom: -10px;
}

.large-center {
  text-align: center;
  font-size: clamp(4rem, 7vw, 7rem);
  font-family: "Oswald", sans-serif;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.contact-details {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-top: 20px;
  border-top: 2px solid rgba(0, 0, 0, 0.14);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details a {
  color: inherit;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}


.footer-strip {
  background: var(--black);
  color: var(--white);
  text-align: center;
  font-weight: 700;
  padding: 12px 20px;
  font-size: 16px;
}


.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}


.panel {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.hero-image-wrapper img,
.project-image-box img,
.project-two-images img,
.experience-images img,
.about-right img,
.strengths-portrait img {
  transition: transform 0.5s ease, filter 0.5s ease;
}

.hero-image-wrapper:hover img,
.project-image-box:hover img,
.project-two-images img:hover,
.experience-images img:hover,
.about-right:hover img,
.strengths-portrait:hover img {
  transform: scale(1.04);
  filter: grayscale(0%) contrast(1.18);
}


@media (max-width: 1100px) {
  .hero {
    min-height: 640px;
  }

  .hero-script {
    font-size: 86px;
    top: 72px;
  }

  .hero-image-wrapper {
    width: 280px;
    top: 220px;
  }
}

@media (max-width: 900px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    grid-template-columns: 100px 1fr 100px;
    font-size: 10px;
  }

  .hero {
    min-height: 740px;
    padding: 28px 24px;
  }

  .hero-grid-line {
    left: 24px;
    width: 120px;
  }

  .hero-script {
    font-size: 76px;
    top: 80px;
  }

  .hero-title {
    margin-top: 130px;
  }

  .hero-image-wrapper {
    width: 260px;
    top: 255px;
  }

  .hero-star {
    right: 40px;
    top: 150px;
    font-size: 48px;
  }

  .hero-text {
    left: 24px;
    right: 24px;
    bottom: 35px;
    max-width: 100%;
  }

  .about-layout,
  .strengths-layout,
  .project-layout,
  .project-two-layout {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-star {
    display: none;
  }

  .contact-details {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .page-shell {
    padding: 16px;
  }

  .website-frame {
    padding: 10px;
    border-radius: 12px;
  }

  .topbar {
    padding: 10px 12px;
    grid-template-columns: 70px 1fr 70px;
    font-size: 8px;
    letter-spacing: 0.12em;
  }

  .hero {
    min-height: 680px;
    padding: 20px 16px;
  }

  .hero-grid-line {
    display: none;
  }

  .hero-script {
    font-size: 58px;
    top: 58px;
  }

  .hero-title {
    font-size: 4.8rem;
    margin-top: 120px;
  }

  .hero-image-wrapper {
    width: 210px;
    top: 220px;
  }

  .hero-star {
    right: 18px;
    top: 120px;
    font-size: 36px;
  }

  .hero-text p {
    font-size: 13px;
    line-height: 1.6;
  }

  .section-title.blue,
  .section-title.white {
    font-size: 2.8rem;
  }

  .script-note,
  .script-accent {
    font-size: 40px;
  }

  .large-center {
    font-size: 3.8rem;
  }

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

  .experience-images {
    grid-column: auto;
    grid-template-columns: 1fr 1fr;
  }

  .experience-images img,
  .project-two-images img {
    height: 120px;
  }
}


.work-hero {
  position: relative;
  padding: 30px 24px 40px;
  min-height: 360px;
  overflow: hidden;
}

.work-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.work-hero-inner {
  position: relative;
  padding: 30px 20px 20px;
  min-height: 260px;
}

.work-hero-script {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Great Vibes", cursive;
  font-size: clamp(3.5rem, 7vw, 6rem);
  z-index: 2;
}

.work-hero-title {
  font-family: "Oswald", sans-serif;
  font-size: clamp(4.5rem, 12vw, 10rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--blue);
  text-align: center;
  margin-top: 70px;
  position: relative;
  z-index: 1;
}

.work-hero-star {
  position: absolute;
  right: 70px;
  top: 40px;
  font-size: 56px;
  font-weight: 700;
}

.work-hero-text {
  max-width: 500px;
  margin-top: 30px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.72);
}


.work-grid-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 22px 10px;
  flex-wrap: wrap;
}


.projects-masonry {
  column-count: 3;
  column-gap: 18px;
  padding: 10px 22px 22px;
}

.masonry-card {
  display: inline-block;
  width: 100%;
  margin-bottom: 18px;
  text-decoration: none;
  break-inside: avoid;
  border: 4px solid var(--black);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.masonry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.14);
}

.light-card {
  background: var(--paper);
  color: var(--black);
}

.dark-card {
  background: var(--black);
  color: var(--white);
}

.masonry-image-wrap {
  overflow: hidden;
  border-bottom: 4px solid var(--black);
}

.dark-card .masonry-image-wrap {
  border-bottom: 4px solid var(--paper);
}

.masonry-image {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.masonry-card:hover .masonry-image {
  transform: scale(1.04);
  filter: grayscale(0%) contrast(1.14);
}

.masonry-image-wrap.small .masonry-image {
  height: 200px;
}

.masonry-image-wrap.medium .masonry-image {
  height: 280px;
}

.masonry-image-wrap.tall .masonry-image {
  height: 420px;
}

.masonry-image-wrap.wide .masonry-image {
  height: 240px;
}

.masonry-content {
  padding: 18px 18px 20px;
}

.masonry-title {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.9;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.blue-text {
  color: var(--blue);
}

.white-text {
  color: var(--white);
}

.masonry-script {
  font-family: "Great Vibes", cursive;
  font-size: 42px;
  line-height: 1;
  margin-top: -8px;
  margin-bottom: 10px;
  color: var(--black);
}

.light-script {
  color: var(--white);
}

.masonry-copy {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.72);
}

/* DETAIL PAGINA */
.detail-panel {
  padding-bottom: 22px;
}

.detail-back-row {
  padding: 20px 22px 0;
}

.detail-back-link {
  display: inline-block;
  text-decoration: none;
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.detail-back-link:hover {
  color: var(--blue);
}

.detail-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  padding: 18px 22px 22px;
  align-items: start;
}

.detail-image-box {
  border: 4px solid var(--black);
  overflow: hidden;
  background: #f2f2f2;
}

.detail-image-box img {
  width: 100%;
  min-height: 420px;
  max-height: 720px;
  object-fit: cover;
}

.detail-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.detail-intro {
  font-size: 14px;
}

.detail-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 10px;
}

.detail-info-item {
  border: 2px solid var(--black);
  padding: 16px;
  min-height: 140px;
}

.detail-info-item h3 {
  font-size: 15px;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.04em;
}

.detail-info-item p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.72);
}


.detail-gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 22px 12px;
  flex-wrap: wrap;
}

.detail-gallery {
  padding: 0 22px 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.detail-gallery img {
  height: 260px;
  object-fit: cover;
  border: 3px solid var(--black);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.detail-gallery img:hover {
  transform: scale(1.02);
  filter: grayscale(0%) contrast(1.14);
}


@media (max-width: 1000px) {
  .projects-masonry {
    column-count: 2;
  }

  .detail-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .projects-masonry {
    column-count: 1;
  }

  .work-hero-star {
    right: 24px;
    top: 28px;
    font-size: 40px;
  }

  .detail-info-grid,
  .detail-gallery {
    grid-template-columns: 1fr;
  }

  .detail-image-box img {
    min-height: 260px;
  }
}

.home-link {
  text-decoration: none;
  width: fit-content;
  cursor: pointer;
}

.home-link span {
  transition: transform 0.25s ease;
}

.home-link:hover span {
  transform: scale(1.15);
}

.footer-link-strip {
  cursor: pointer;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.footer-link-strip:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.project-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.project-link:hover .panel {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}