:root {
  --accent: #a9dcf7;
  --black: #050505;
  --text: #111111;
  --light: #f4f4f4;
  --white: #ffffff;
  --background: #f3f3f3;
  --sectiontext: #666666;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

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

.container {
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
}

.section-white {
  background: var(--background);
}

.topbar {
  background: var(--white);
  padding: 18px 0 16px;
  position: sticky;
  top: 0;
  z-index: 50;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.menu-toggle,
.menu-drawer,
.menu-overlay,
.menu-close {
  display: none;
}

.site-logo {
  width: 86px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 42px;
  flex-wrap: wrap;
  justify-content: center;
}

.main-nav a {
  text-decoration: none;
  color: var(--black);
  font-weight: 800;
  font-size: 18px;
}

.hero {
  padding: 48px 0 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  align-items: end;
  gap: 18px;
}

.hero-copy h1 {
  margin: 8px 0 58px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
  font-size: clamp(48px, 5.4vw, 74px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-title-text {
  white-space: nowrap;
}

  .hero-copy {
    width: 100%;
    max-width: 720px;
  }

.highlight-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-name-pill {
  min-height: clamp(64px, 7vw, 96px);
  padding: 12px 34px 14px;
  background-image: url("images/CutoutErnestoBellusciground.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 95% 87%;
  color: var(--white);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.quote-block {
  margin-bottom: 66px;
}

.quote-text {
  font-size: clamp(26px, 2.3vw, 40px);
  margin: 0;
  font-weight: 600;
}

.quote-author {
  margin: 6px 0 0;
  font-size: 25px;
  font-weight: 600;
}

.quote-author em {
  font-weight: 600;
}

.photo-row {
  display: flex;
  gap: 22px;
  align-items: flex-end;
  padding-bottom: 18px;
}

.photo-card {
  background: var(--white);
  padding-top: 10px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
  border: 1px solid var(--background);
  width: 100%;
  transform: rotate(-7deg);
}

.photo-card:nth-child(2) {
  transform: rotate(-3deg);
}

.photo-card:nth-child(3) {
  transform: rotate(2.5deg);
}

.photo-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.hero-image-wrap {
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-image {
  width: 100%;
  object-fit: contain;
}

.social-strip {
  background: var(--black);
  overflow: hidden;
  position: relative;
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
}

.social-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: social-scroll 70s linear infinite;
}

.social-group {
  display: flex;
  flex: 0 0 auto;
}

.social-item {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 9px 22px;
  color: white;
  font-size: 26px;
  font-weight: 600;
  white-space: nowrap;
  flex: 0 0 auto;
}

.social-item img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.section-banner {
  background: black;
  color: white;
  position: relative;
  overflow: hidden;
}

.banner-inner {
  min-height: 760px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-title-wrap h2 {
  margin: 0;
  text-align: center;
  font-size: clamp(42px, 8vw, 104px);
  line-height: 1.2;
  font-weight: 400;
}

.banner-title-wrap strong {
  font-weight: 800;
}

.banner-flag {
  position: absolute;
  top: -15px;
  left: 22%;
  width: 350px;
  rotate: -5deg;
}

.banner-side-logo {
  position: absolute;
  right: -26px;
  bottom: 6px;
  width: 430px;
}

.banner-pxl {
  position: absolute;
  left: -12px;
  bottom: 28px;
  width: 300px;
    rotate: 20deg;
}

@keyframes social-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.section-label {
  padding-top: 26px;
  color: var(--sectiontext);
  font-size: 14px;
  font-weight: 400;
}

.about-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
}

.about-header .section-label {
  padding-top: 0;
}

.about-header-logo {
  width: 58px;
  height: auto;
  flex: 0 0 auto;
}

.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.2fr;
  gap: 42px;
  align-items: center;
  padding: 44px 0 72px;
}

.about-image {
  width: 100%;
  max-width: 540px;
}

.about-copy {
  position: relative;
  padding-right: 36px;
}

.about-copy h3 {
  margin: 0 0 26px;
  font-size: clamp(42px, 3.6vw, 64px);
  font-weight: 800;
  line-height: 1.05;
}

.about-copy p {
  font-size: 25px;
  line-height: 1.48;
  margin: 0 0 18px;
  font-weight: 400;
}

.about-copy strong {
  font-weight: 600;
}

.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 54px;
  align-items: start;
  padding: 24px 0 78px;
}

.left-column, .right-column {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.cut-title {
  display: inline-block;
  background-image: url("images/CutoutTitleBackground.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  color: white;
  padding: 10px 22px 12px;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1;
  white-space: nowrap;
}

.language-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.language-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 400;
}

.stars {
  display: flex;
  gap: 6px;
  font-size: 24px;
  line-height: 1;
}

.star {
  color: var(--background);
  -webkit-text-stroke: 1.4px var(--accent);
}

.star.filled {
  color: var(--accent);
  -webkit-text-stroke: 1.4px var(--accent);
}

.skill-group {
  margin-bottom: 18px;
}

.skill-group h4 {
  font-size: 18px;
  margin: 10px 0 6px;
}

.skill-group p,
.edu-copy p {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 400;
}

.skill-group strong,
.edu-copy strong {
  font-weight: 600;
}

.edu-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  margin-bottom: 26px;
  align-items: start;
}

.edu-year {
  font-size: 15px;
  font-weight: 400;
  padding-top: 2px;
}

.last-section {
  padding-bottom: 40px;
}

@media (max-width: 1100px) {
  .container {
    width: min(100% - 36px, 1000px);
  }

  .hero-grid,
  .about-grid,
  .skills-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    width: 100%;
    max-width: 750px;
  }

  .hero-image-wrap {
    justify-content: flex-start;
  }

  .hero-image {
    max-width: 520px;
  }

  .hero-copy h1 {
    flex-wrap: wrap;
  }

  .hero-title-text {
    white-space: normal;
  }

  .highlight-pill img {
    height: clamp(36px, 4.2vw, 52px);
  }

  .banner-inner {
    min-height: 620px;
  }

  .banner-flag {
    width: 220px;
    left: 14%;
  }

  .banner-side-logo {
    width: 320px;
  }

  .banner-pxl {
    width: 220px;
  }

  .about-header-logo {
    width: 50px;
  }
}

@media (max-width: 760px) {
  .topbar-inner {
    flex-direction: row;
    justify-content: space-between;
    gap: 16px;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    z-index: 70;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 3px;
    border-radius: 999px;
    background: var(--black);
  }

  .menu-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 90;
  }

  .menu-drawer {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: min(82vw, 280px);
    height: 100vh;
    background: var(--background);
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    padding: 26px 24px;
    box-shadow: -12px 0 30px rgba(0, 0, 0, 0.2);
  }

  .menu-drawer.open {
    transform: translateX(0);
  }

  .menu-close {
    display: block;
    margin-left: auto;
    border: 0;
    background: transparent;
    color: var(--black);
    font-size: 34px;
    line-height: 1;
    font-weight: 400;
    padding: 0;
    cursor: pointer;
  }

  .drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 38px;
  }

  .drawer-nav a {
    text-decoration: none;
    color: var(--black);
    font-size: 18px;
    font-weight: 800;
  }

  .hero-name-pill{
    background-size: 90% 85%;
  }

  .hero {
    padding-top: 30px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 20px;
  }

  .hero-copy h1 {
    margin-bottom: 12px;
    font-size: clamp(28px, 8vw, 36px);
    line-height: 0.96;
    flex-wrap: wrap;
    gap: 4px 6px;
  }

  .hero-title-text {
    white-space: nowrap;
  }

  .highlight-pill {
    margin-left: 0;
  }

  .highlight-pill img {
    height: clamp(46px, 9.5vw, 48px);
  }

  .quote-block {
    margin-bottom: 14px;
  }

  .quote-text {
    font-size: 16px;
    line-height: 1.12;
  }

  .quote-author {
    font-size: 14px;
  }

  .photo-row {
    display: none;
  }

  .photo-card {
    width: min(100%, 230px);
  }

  .social-item {
    font-size: 16px;
    gap: 30px;
    padding: 7px 8px 7px 20px;
  }

  .social-track {
    animation-duration: 84s;
  }

  .hero-image-wrap {
    justify-content: center;
  }

  .hero-image {
    width: min(100%, 320px);
    margin-right: 0;
  }

  .banner-inner {
    min-height: 420px;
  }

  .banner-flag {
    width: 180px;
    left: 50%;
    transform: translateX(-50%);
    top: -20px;
  }

  .banner-side-logo {
    width: 220px;
    right: -30px;
    bottom: -28px;
  }

  .banner-pxl {
    width: 168px;
    left: -22px;
    bottom: -20px;
  }

  .about-header {
    align-items: center;
    padding-top: 20px;
  }

  .about-header .section-label {
    font-size: 12px;
  }

  .about-header-logo {
    width: 34px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
    padding: 36px 0 42px;
  }

  .about-copy {
    order: 1;
  }

  .about-image-wrap {
    order: 2;
    display: flex;
    justify-content: left;
  }

  .about-image {
    max-width: 78%;
  }

  .about-copy {
    padding-right: 0;
  }

  .about-copy h3 {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.1;
  }

  .about-copy p,
  .skill-group p,
  .edu-copy p,
  .language-row,
  .edu-year {
    font-size: 14px;
    line-height: 1.4;
  }

  .cut-title {
    font-size: 20px;
    padding: 8px 14px 9px;
    margin-bottom: 12px;
  }

  .skills-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 18px 0 40px;
  }

  .left-column,
  .right-column {
    display: contents;
    gap: 0;
  }

  .left-column .content-block,
  .education-block,
  .skills-block {
    width: 100%;
  }

  .left-column .content-block {
    order: 1;
  }

  .education-block {
    order: 2;
  }

  .skills-block {
    order: 3;
  }

  .language-row {
    grid-template-columns: 1fr max-content;
    gap: 10px;
    align-items: center;
  }

  .stars {
    font-size: 19px;
    gap: 4px;
    justify-self: end;
  }

  .skill-group h4 {
    font-size: 16px;
    margin: 10px 0 5px;
  }

  .edu-item {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 16px;
  }

  .skill-group {
    margin-bottom: 0;
  }

  .education-block .cut-title,
  .skills-block .cut-title {
    margin-bottom: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .social-track {
    animation: none;
    transform: translateX(0);
  }
}

@media (min-width: 761px) {
  .main-nav a {
    font-size: 16px;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 4.2vw, 48px);
  }

  .quote-text {
    font-size: clamp(20px, 1.8vw, 30px);
  }

  .quote-author {
    font-size: 18px;
  }

  .social-item {
    font-size: 20px;
  }

  .section-label {
    font-size: 14px;
  }

  .about-copy h3 {
    font-size: clamp(30px, 3vw, 44px);
  }

  .about-copy p {
    font-size: 17px;
  }

  .cut-title {
    font-size: 20px;
    padding: 10px 20px 12px;
  }

  .language-row {
    font-size: 16px;
  }

  .stars {
    font-size: 20px;
  }

  .skill-group h4 {
    font-size: 20px;
  }

  .skill-group p,
  .edu-copy p,
  .edu-year {
    font-size: 17px;
  }

  .hobby-cut-title {
    font-size: 20px;
    padding: 12px 22px 14px;
  }

  .hobby-copy p {
    font-size: 17px;
    line-height: 1.5;
  }
}

.hobbies-banner {
  background: var(--black);
}

.hobbies-banner-inner {
  min-height: 760px;
  position: relative;
}

.hobby-banner-boxing {
  position: absolute;
  top: -246px;
  left: 6%;
  width: 470px;
  transform: rotate(10deg);
}

.hobby-banner-ds {
  position: absolute;
  left: -4%;
  bottom: -128px;
  width: 455px;
  transform: rotate(15deg);
}

.hobby-banner-slamdunk {
  position: absolute;
  right: -50px;
  bottom: -250px;
  width: 575px;
  transform: rotate(-26deg);
}

.hobby-banner-shape {
  position: absolute;
  right: -45px;
  top: -190px;
  width: 480px;
  transform: rotate(-100deg);
}

.hobbies-content {
  padding-bottom: 42px;
}

.hobbies-header {
  padding-top: 26px;
}

.hobby-slider {
  position: relative;
  display: grid;
  grid-template-columns: 78px 1fr 78px;
  gap: 24px;
  align-items: center;
  padding: 34px 0 28px;
  min-height: 640px;
}

.hobby-visual-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hobby-visual {
  width: 100%;
  max-width: 470px;
  object-fit: contain;
}

.hobby-copy {
  max-width: 760px;
  padding: 0 20px 0 10px;
}

.hobby-cut-title {
  font-size: 20px;
  margin-bottom: 16px;
  padding: 10px 16px 11px;
}

.hobby-copy p {
  font-size: 17px;
  line-height: 1.45;
  margin-bottom: 16px;
}

.hobby-arrow {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.hobby-arrow img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.hobby-arrow-left img {
  transform: rotate(180deg);
}

.hobby-dots-wrap {
  display: flex;
  justify-content: center;
  padding: 6px 0 8px;
}

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

.hobby-dot {
  border: 0;
  padding: 0;
  cursor: pointer;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--black);
}

.hobby-dot.active {
  width: 56px;
}

@media (max-width: 1200px) {
  .hobby-slider {
    grid-template-columns: 68px minmax(260px, 390px) 1fr 68px;
  }

  .hobby-copy p {
    font-size: 22px;
  }

  .hobby-banner-boxing {
    width: 220px;
  }

  .hobby-banner-ds {
    width: 290px;
  }

  .hobby-banner-slamdunk {
    width: 220px;
  }

  .hobby-banner-shape {
    width: 220px;
  }
}

@media (max-width: 760px) {
  .hobbies-banner-inner {
    min-height: 420px;
  }

  .hobby-banner-boxing {
    width: 230px;
    top: -102px;
    left: -30px;
  }

  .hobby-banner-ds {
    width: 220px;
    left: -80px;
    bottom: -60px;
  }

  .hobby-banner-slamdunk {
    width: 260px;
    right: -100px;
    bottom: -70px;
  }

  .hobby-banner-shape {
    width: 230px;
    top: -94px;
    right: -60px;
  } 

  .hobby-slider {
    display: flex;
    flex-direction: column;
    height: 800px;
    padding: 20px 0 20px;
    gap: 0;
    touch-action: pan-y;
  }

  .hobby-visual-wrap {
    grid-column: 1 / -1;
    order: 1;
  }

  .hobby-slide-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .hobby-slide-content .hobby-copy {
    order: 1;
    width: 100%;
    padding: 0;
  }

  .hobby-slide-content .hobby-visual-wrap {
    order: 2;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hobby-copy {
    order: 1;
    width: 100%;
    padding: 0;
  }

  .hobby-visual-wrap {
    order: 2;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hobby-arrow {
    display: none;
  }

  .hobby-arrow-left {
    left: 0;
  }

  .hobby-arrow-right {
    right: 0;
  }

  .hobby-arrow img {
    width: 56px;
    height: 56px;
  }

  .hobby-visual {
    max-width: 300px;
  }

  .hobby-cut-title {
    font-size: 18px;
    margin-bottom: 16px;
    padding: 10px 16px 11px;
  }

  .hobby-copy p {
    font-size: 15px;
    line-height: 1.45;
    margin-bottom: 16px;
  }

  .hobby-dots {
    gap: 8px;
  }

  .hobby-dot {
    width: 14px;
    height: 14px;
  }

  .hobby-dot.active {
    width: 36px;
  }
}

.hobby-slider {
  overflow: hidden;
}

.hobby-slide-content {
  display: grid;
  grid-template-columns: minmax(320px, 500px) 1fr;
  gap: 24px;
  align-items: center;
  width: 100%;
  min-width: 0;
}

/* Next: nieuwe slide komt van rechts */
.hobby-slide-next-enter-active,
.hobby-slide-next-leave-active,
.hobby-slide-prev-enter-active,
.hobby-slide-prev-leave-active {
  transition: transform 0.38s ease, opacity 0.38s ease;
}

.hobby-slide-next-enter-from {
  opacity: 0;
  transform: translateX(60px);
}

.hobby-slide-next-leave-to {
  opacity: 0;
  transform: translateX(-60px);
}

/* Prev: nieuwe slide komt van links */
.hobby-slide-prev-enter-from {
  opacity: 0;
  transform: translateX(-60px);
}

.hobby-slide-prev-leave-to {
  opacity: 0;
  transform: translateX(60px);
}

.hobby-slide-next-enter-to,
.hobby-slide-next-leave-from,
.hobby-slide-prev-enter-to,
.hobby-slide-prev-leave-from {
  opacity: 1;
  transform: translateX(0);
}

.projects-banner {
  background: var(--black);
}

.projects-banner-inner {
  min-height: 760px;
  position: relative;
}

.project-banner-totalcare {
  position: absolute;
  top: -25px;
  left: -8px;
  width: 350px;
  transform: rotate(13deg);
}

.project-banner-qakamp {
  position: absolute;
  top: -38px;
  right: -40px;
  width: 520px;
  transform: rotate(-12deg);
}

.project-banner-openinzicht {
  position: absolute;
  left: -88px;
  bottom: -100px;
  width: 430px;
  transform: rotate(14deg);
}

.project-banner-visear {
  position: absolute;
  right: -42px;
  bottom: -90px;
  width: 360px;
  transform: rotate(-23deg);
}

.projects-content {
  padding-bottom: 78px;
}

.projects-header {
  padding-top: 26px;
}

.projects-list {
  padding: 54px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.project-card {
  min-height: 116px;
  border: 3px solid var(--accent);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px 18px 16px;
  gap: 20px;
}

.project-card-left {
  display: flex;
  align-items: center;
  gap: 26px;
  min-width: 0;
}

.project-logo-wrap {
  width: 110px;
  flex: 0 0 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-logo {
  width: 100%;
  max-width: 108px;
  max-height: 70px;
  object-fit: contain;
}

.project-info {
  min-width: 0;
}

.project-info h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 800;
  color: var(--black);
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 4px 10px 5px;
  background: var(--accent);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  border-radius: 4px;
  white-space: nowrap;
}

.button-hover {
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.button-hover:hover {
  transform: translateY(-2px);
}

.project-plus-button {
  transition: transform 0.2s ease;
}

.project-plus-button:hover {
  transform: translateY(-2px) scale(1.05);
}

.hobby-arrow {
  transition: transform 0.2s ease;
}

.hobby-arrow:hover {
  transform: translateY(-2px) scale(1.05);
}

.project-plus-button {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  flex: 0 0 auto;
  margin-left: 12px;
}

.project-plus-button img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

@media (max-width: 1200px) {
  .project-banner-totalcare {
    width: 260px;
  }

  .project-banner-qakamp {
    width: 400px;
    right: -24px;
  }

  .project-banner-openinzicht {
    width: 330px;
    left: -60px;
  }

  .project-banner-visear {
    width: 250px;
    right: 20px;
  }
}

@media (max-width: 760px) {
  .projects-banner-inner {
    min-height: 420px;
  }

  .project-banner-totalcare {
    width: 190px;
    top: -20px;
    left: -58px;
  }

  .project-banner-qakamp {
    width: 250px;
    top: -14px;
    right: -56px;
  }

  .project-banner-openinzicht {
    width: 210px;
    left: -56px;
    bottom: -40px;
  }

  .project-banner-visear {
    width: 160px;
    right: -40px;
    bottom: -40px;
  }

  .projects-content {
    padding-bottom: 34px;
  }

  .projects-list {
    padding: 28px 0 20px;
    gap: 14px;
  }

  .project-card {
    min-height: auto;
    padding: 14px 12px;
    gap: 12px;
    align-items: center;
  }

  .project-card-left {
    gap: 12px;
    align-items: center;
    min-width: 0;
    flex: 1 1 auto;
  }

  .project-logo-wrap {
    width: 72px;
    flex: 0 0 72px;
  }

  .project-logo {
    max-width: 72px;
    max-height: 52px;
  }

  .project-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .project-tags {
    gap: 6px;
  }

  .project-tag {
    min-height: 24px;
    padding: 4px 8px;
    font-size: 11px;
  }

  .project-plus-button img {
    width: 34px;
    height: 34px;
  }
}

.project-card {
  flex-direction: column;
  align-items: stretch;
}

.project-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.project-card.expanded {
  padding: 14px 14px 16px;
}

.project-expanded-content {
  padding: 8px 2px 0;
}

.project-summary {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 400;
  color: var(--black);
  max-width: 980px;
}

.project-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}

.project-meta-box {
  border: 2px solid var(--accent);
  background: transparent;
  padding: 10px 12px;
  min-height: 72px;
}

.project-meta-box h4 {
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 800;
  color: var(--black);
}

.project-meta-box p {
  margin: 0;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 600;
  color: var(--black);
}

.project-detail-block {
  margin-bottom: 20px;
}

.project-detail-block h4 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--black);
}

.project-detail-paragraph {
  margin: 0 0 12px;
  font-size: 17px;
  line-height: 1.35;
  color: var(--black);
}

.project-bullet-list {
  margin: 0;
  padding-left: 20px;
  color: var(--black);
}

.project-bullet-list li {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.32;
}

.project-bullet-list li::marker {
  color: var(--accent);
}

.project-bullet-list.two-columns {
  columns: 2;
  column-gap: 34px;
}

.project-tags-detail {
  margin-top: 0;
}

.prototype-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 16px;
}

.prototype-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  text-decoration: none;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  background-image: url("images/CutoutButtonBackground.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.project-collage {
  overflow: hidden;
}

.project-collage img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 760px) {
  .project-card.expanded {
    padding: 10px 10px 12px;
  }

  .project-card-top {
    gap: 10px;
    align-items: flex-start;
  }

  .project-summary {
    font-size: 14px;
    line-height: 1.35;
    margin-bottom: 14px;
  }

  .project-meta-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 14px;
  }

  .project-meta-box {
    min-height: 62px;
    padding: 8px;
  }

  .project-meta-box h4 {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .project-meta-box p {
    font-size: 11px;
    line-height: 1.25;
  }

  .project-detail-block {
    margin-bottom: 16px;
  }

  .project-detail-block h4 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .project-detail-paragraph {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 10px;
  }

  .project-bullet-list {
    padding-left: 18px;
  }

  .project-bullet-list li {
    font-size: 14px;
    line-height: 1.35;
    margin-bottom: 7px;
  }

  .project-bullet-list.two-columns {
    columns: 1;
  }

  .prototype-buttons {
    gap: 8px;
    margin-bottom: 12px;
  }

  .prototype-button {
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }
}

.project-info h3.project-title-expanded {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .project-info h3.project-title-expanded {
    font-size: 28px;
    margin-bottom: 0;
  }
}

.project-card.expanded .project-card-left {
  align-items: flex-start;
}

.contact-section {
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}

.contact-inner {
  position: relative;
  min-height: 880px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 0.9fr;
  align-items: center;
}

.contact-logo-shape {
  position: absolute;
  top: 70px;
  right: -80px;
  width: 430px;
  z-index: 1;
  transform: rotate(-12deg);
}

.contact-content {
  width: 600px;
  grid-column: 2;
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.contact-content h2 {
  margin: 0 0 28px;
  font-size: 104px;
  line-height: 0.95;
  font-weight: 800;
  color: var(--white);
}

.contact-content p {
  margin: 0 0 34px;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 400;
  color: var(--background);
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 170px;
  min-height: 70px;
  padding: 0 28px;
  text-decoration: none;
  color: var(--black);
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  background-image: url("images/CutoutTitleBackground.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.contact-button img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.contact-image-wrap {
  position: absolute;
  left: -80px;
  bottom: 0;
  z-index: 2;
}

.contact-image {
  width: 430px;
  max-width: none;
  display: block;
}

@media (max-width: 1100px) {
  .contact-inner {
    min-height: 760px;
    grid-template-columns: 1fr;
    padding: 80px 0 0;
  }

  .contact-content {
    grid-column: 1;
    max-width: 640px;
    padding: 0 20px;
  }

  .contact-content h2 {
    font-size: 86px;
  }

  .contact-logo-shape {
    width: 320px;
    top: 36px;
    right: -20px;
  }

  .contact-image {
    width: 420px;
  }
}

@media (max-width: 760px) {
  .contact-inner {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 38px 0 0;
  }

  .contact-logo-shape {
    position: absolute;
    top: 18px;
    right: -36px;
    width: 220px;
  }

  .contact-content {
    order: 1;
    max-width: 100%;
    padding: 180px 18px 0;
  }

  .contact-content h2 {
    font-size: 56px;
    margin-bottom: 18px;
  }

  .contact-content p {
    font-size: 17px;
    line-height: 1.4;
    margin-bottom: 22px;
  }

  .contact-buttons {
    gap: 12px;
    justify-content: center;
  }

  .contact-button {
    min-width: 145px;
    min-height: 52px;
    padding: 0 18px;
    gap: 10px;
    font-size: 18px;
  }

  .contact-button img {
    width: 26px;
    height: 26px;
  }

  .contact-image-wrap {
    position: relative;
    left: auto;
    bottom: auto;
    order: 2;
    align-self: flex-start;
    margin-top: 20px;
    margin-left: -36px;
  }

  .contact-image {
    width: 250px;
  }
}

.project-card {
  transition: padding 0.35s ease, background-color 0.35s ease, border-color 0.35s ease;
}

.project-card-top {
  transition: margin-bottom 0.35s ease;
}

.project-card.expanded .project-card-top {
  margin-bottom: 6px;
}

.project-expanded-content {
  overflow: hidden;
}

/* smooth open/close */
.project-expand-enter-active,
.project-expand-leave-active {
  transition: opacity 0.35s ease, transform 0.35s ease, max-height 0.45s ease;
  transform-origin: top;
  overflow: hidden;
}

.project-expand-enter-from,
.project-expand-leave-to {
  opacity: 0;
  transform: translateY(-12px);
  max-height: 0;
}

.project-expand-enter-to,
.project-expand-leave-from {
  opacity: 1;
  transform: translateY(0);
  max-height: 2200px;
}

@media (max-width: 760px) {
  .project-expand-enter-active,
  .project-expand-leave-active {
    transition: opacity 0.28s ease, transform 0.28s ease, max-height 0.38s ease;
  }
}

.footer {
  background: var(--black);
  border-top: 2px solid var(--black);
  padding: 28px 0;
  color: var(--black);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-left img {
  width: 42px;
}

.footer-center p {
  margin: 0;
  font-size: 14px;
  text-align: center;
  color: var(--white);
}

.footer-right {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer-right a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-right a img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.footer-right a:hover {
  transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 760px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-left img {
    width: 42px;
  }

  .footer-center p {
    font-size: 12px;
    line-height: 1.4;
  }

  .footer-right a {
    width: 40px;
    height: 40px;
  }

  .footer-right a img {
    width: 20px;
    height: 20px;
  }
}

.video-thumb-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.video-thumb-card {
  display: block;
  overflow: hidden;
  border: 2px solid var(--accent);
  background: var(--white);
}

.video-thumb-card img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

@media (max-width: 760px) {
  .video-thumb-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-grid {
    display: flex;
    flex-direction: column;
  }

  .hero-copy {
    order: 1;
  }

  .hero-image-wrap {
    order: 2;
  }
}

.innovation-banner {
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.innovation-banner-inner {
  min-height: 720px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.innovation-title h2 {
  margin: 0;
  text-align: center;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 1;
  font-weight: 800;
}

.innovation-sap {
  position: absolute;
  top: -40px;
  left: 50%;
  width: 390px;
  transform: translateX(-50%) rotate(3deg);
}

.innovation-code {
  position: absolute;
  left: -145px;
  bottom: -50px;
  width: 430px;
  transform: rotate(12deg);
}

.innovation-pxl {
  position: absolute;
  right: -170px;
  bottom: -25px;
  width: 700px;
  transform: rotate(-3deg);
}

@media (max-width: 1100px) {
  .innovation-banner-inner {
    min-height: 600px;
  }

  .innovation-sap {
    width: 290px;
  }

  .innovation-code {
    width: 330px;
    left: -120px;
  }

  .innovation-pxl {
    width: 520px;
    right: -160px;
  }
}

@media (max-width: 760px) {
  .innovation-banner-inner {
    min-height: 420px;
  }

  .innovation-sap {
    width: 210px;
    top: -22px;
  }

  .innovation-code {
    width: 200px;
    left: -55px;
    bottom: -18px;
  }

  .innovation-pxl {
    width: 280px;
    right: -60px;
    bottom: -2px;
  }

  .innovation-title h2 {
    font-size: 42px;
  }
}

.innovation-content {
  padding-bottom: 60px;
}

.innovation-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 26px;
}

.innovation-slider {
  position: relative;
  display: grid;
  grid-template-columns: 78px 0.9fr 1.4fr 78px;
  gap: 34px;
  align-items: center;
  min-height: 700px;
  padding: 46px 0 30px;
  overflow: hidden;
}

.innovation-slide-content {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 56px;
  align-items: center;
  width: 100%;
}

.innovation-photo-card {
  background: var(--white);
  padding: 14px 0px 10px;
  box-shadow: 0 14px 12px rgba(0, 0, 0, 0.04);
  transform: rotate(4deg);
}

.innovation-photo-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.innovation-copy {
  max-width: 780px;
}

.innovation-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  margin-bottom: 34px;
}

.innovation-cut-title {
  font-size: 20px;
  margin-bottom: 0;
  padding: 12px 24px 14px;
}

.innovation-date {
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
}

.innovation-copy p {
  font-size: 17px;
  line-height: 1.35;
  margin: 0 0 24px;
}

.innovation-arrow-left {
  grid-column: 1;
}

.innovation-arrow-right {
  grid-column: 4;
}

@media (max-width: 1100px) {
  .innovation-slider {
    grid-template-columns: 60px 1fr 60px;
  }

  .innovation-slide-content {
    grid-column: 2;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .innovation-copy p {
    font-size: 18px;
  }
}

@media (max-width: 760px) {
  .innovation-content {
    padding-bottom: 36px;
  }

  .innovation-header {
    padding-top: 20px;
  }

  .section-label {
    font-size: 12px;
  }

  .innovation-slider {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 28px 0 30px;
    touch-action: pan-y;
  }

  .innovation-slide-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .innovation-photo-card {
    order: 2;
    padding: 14px 0px 10px;
    transform: rotate(3deg);
    width: 88%;
    margin: 0 auto;
  }

  .innovation-copy {
    order: 1;
    width: 100%;
  }

  .innovation-title-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    margin-bottom: 20px;
  }

  .innovation-cut-title {
    white-space: nowrap;
    max-width: 100%;
    font-size: 18px;
  }

  .innovation-date {
    margin-left: auto;
    white-space: nowrap;
    font-size: 14px;
  }

  .innovation-copy p {
    font-size: 15px;
    line-height: 1.45;
    margin-bottom: 16px;
  }

  .innovation-arrow-left,
  .innovation-arrow-right {
    display: none;
  }
}

.personal-development-banner {
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.personal-development-inner {
  min-height: 720px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.personal-development-title h2 {
  margin: 0;
  text-align: center;
  font-size: clamp(48px, 6vw, 92px);
  line-height: 1.15;
  font-weight: 400;
}

.personal-development-title h2 span {
  display: block;
  font-weight: 400;
}

.personal-development-title h2 strong {
  display: block;
  font-weight: 800;
}

.personal-pxl {
  position: absolute;
  left: -100px;
  bottom: -30px;
  width: 420px;
  transform: rotate(-7deg);
}

.personal-learning {
  position: absolute;
  right: 10px;
  top: -12px;
  width: 300px;
  transform: rotate(7deg);
}

@media (max-width: 1100px) {
  .personal-development-inner {
    min-height: 600px;
  }

  .personal-pxl {
    width: 430px;
    left: -150px;
    bottom: -135px;
  }

  .personal-learning {
    width: 250px;
    right: 30px;
  }
}

@media (max-width: 760px) {
  .personal-development-inner {
    min-height: 420px;
  }

  .personal-development-title h2 {
    font-size: 38px;
  }

  .personal-pxl {
    width: 200px;
    left: -35px;
    bottom: -28px;
  }

  .personal-learning {
    width: 150px;
    right: -20px;
    top: -10px;
  }
}

.personal-development-icon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.personal-development-icon-wrap img {
  width: 100%;
  max-width: 320px;
  object-fit: contain;
}

@media (max-width: 760px) {
  .personal-development-icon-wrap {
    order: 2;
  }

  .personal-development-icon-wrap img {
    max-width: 240px;
  }
}

.activities-banner {
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.activities-banner-inner {
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.activities-title h2 {
  margin: 0;
  text-align: center;
  font-size: clamp(48px, 6vw, 92px);
  line-height: 1.1;
  font-weight: 400;
}

.activities-title span {
  display: block;
}

.activities-title strong {
  display: block;
  font-weight: 800;
}

/* POSITIES IMAGES */

.activities-top-left {
  position: absolute;
  top: -10px;
  left: 60px;
  width: 300px;
  transform: rotate(-10deg);
}

.activities-top-right {
  position: absolute;
  top: -10px;
  right: 60px;
  width: 320px;
  transform: rotate(10deg);
}

.activities-bottom-left {
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 380px;
  transform: rotate(12deg);
}

.activities-bottom-right {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 620px;
  transform: rotate(-7deg);
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .activities-banner-inner {
    min-height: 580px;
  }

  .activities-top-left {
    width: 200px;
  }

  .activities-top-right {
    width: 220px;
  }

  .activities-bottom-left {
    width: 260px;
  }

  .activities-bottom-right {
    width: 300px;
  }
}

@media (max-width: 760px) {
  .activities-banner-inner {
    min-height: 420px;
  }

  .activities-title h2 {
    font-size: 38px;
  }

  .activities-top-left {
    width: 150px;
    left: -20px;
    top: 30px;
  }

  .activities-top-right {
    width: 180px;
    right: -20px;
    top: -10px;
  }

  .activities-bottom-left {
    width: 180px;
    left: -40px;
    bottom: -30px;
  }

  .activities-bottom-right {
    width: 240px;
    right: -40px;
    bottom: -5px;
  }
}

.activities-content {
  padding-bottom: 78px;
}

.activity-reflection-box {
  border: 2px solid var(--accent);
  padding: 10px;
  margin-bottom: 12px;
}

.activity-reflection-box p {
  margin-top: 10px;
  margin-bottom: 10px;
}

.activity-reflection-box h5 {
  margin-top: 10px;
  margin-bottom: 10px;
}

@media (max-width: 760px) {
  .activities-content .project-expanded-content p,
  .activities-content .project-expanded-content li {
    font-size: 14px;
    line-height: 1.4;
  }

  .activity-reflection-box h5 {
    font-size: 14px;
  }
}

.activity-result-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 18px 0 16px;
}

.activity-result-image {
  width: min(100%, 760px);
  display: flex;
  justify-content: center;
}

.activity-result-image img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
}

.activity-result-arrow {
  position: absolute;
  z-index: 2;
}

.activity-result-arrow-left {
  left: 0;
}

.activity-result-arrow-right {
  right: 0;
}

.activity-result-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  max-width: 520px;
  margin: 0 auto 18px;
}

.activity-result-dot {
  border: 0;
  padding: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--black);
  opacity: 0.35;
  cursor: pointer;
}

.activity-result-dot.active {
  width: 32px;
  opacity: 1;
}

.activity-reflection-box {
  border: 2px solid var(--accent);
  padding: 12px 14px;
  margin-bottom: 12px;
}

.activity-reflection-box h5 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
}

.activity-reflection-box p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

@media (max-width: 760px) {
  .activity-result-image img {
    max-height: 240px;
  }

  .activity-result-arrow {
    display: none;
  }

  .activity-result-dots {
    max-width: 260px;
    gap: 5px;
  }

  .activity-result-dot {
    width: 7px;
    height: 7px;
  }

  .activity-result-dot.active {
    width: 24px;
  }

  .activities-content .project-expanded-content p,
  .activities-content .project-expanded-content li {
    font-size: 14px;
    line-height: 1.4;
  }
}

.activity-result-carousel {
  touch-action: pan-y;
}

.activity-swipe-hint {
  display: none;
}

.activity-result-intro {
  margin: 4px 0 12px;
  font-size: 16px;
  color: var(--black);
}

@media (max-width: 760px) {
  .activity-swipe-hint {
    display: block;
    text-align: center;
    font-size: 12px !important;
    color: var(--sectiontext);
    margin: -6px 0 18px;
  }

  .activity-result-intro {
    font-size: 14px;
  }
}