:root {
  overscroll-behavior: none;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*::selection {
    background: #D2502A;

    color: #fff;
}

body {
    overscroll-behavior-x: none;
    overscroll-behavior-y: none;
}

.h1-top-title {
    margin-bottom: 26px;
    font-family: "Hanken Grotesk", sans-serif;
    font-optical-sizing: auto;    
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 12px;
    font-weight: 600;
    color: rgb(210, 80, 42);
    margin-bottom: 14px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Anybody", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    color: #0A0A0A;
    margin: 0;
}

h1 {
    margin: 0px;
    font-weight: 800;
    font-size: clamp(34px, 4.4vw, 56px);
    line-height: 0.9;
    letter-spacing: -0.015em;
}

h2 {
    margin: 10px 0px 0px;
    font-size: clamp(26px, 3.6vw, 50px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.01em;
}

p {
    font-family: 'Hanken Grotesk',system-ui,sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: rgb(91, 91, 89);
}

header {
    position: sticky;
    top: 0px;
    z-index: 60;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgb(236, 236, 234);
}

section {
    margin: 0 auto;
    width: 100%;
    max-width: 1280px;
    padding: 8px 32px 96px;
}

nav {
    display: flex;
    align-items: center;
    gap: 38px;
}

.header-flex {
    max-width: 1280px;
    margin: 0px auto;
    padding: 18px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: inline-flex;
    align-items: baseline;
    font-family: "Anybody", sans-serif;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1;
    color: #0A0A0A;
    text-decoration: none;
}

.logo:hover {
    color: #D2502A;
}

.logo .jannesboonstra {
    font-size: 25px;
}

.logo .nl {
    font-size: 12.5px;
}

.navlink {
    display: inline-flex;
    align-items: baseline;
    font-family: "Anybody", sans-serif;
    font-weight: 600;
    line-height: 1;
    color: #0A0A0A;
    text-decoration: none;
}

.navlink:hover {
    color: #D2502A;
}

#hamburger {
    display: none;
}

.btn-primary {
    font-family: "Anybody", sans-serif;
    font-weight: 600;
    font-size: 15px;
    background: rgb(10, 10, 10);
    color: rgb(255, 255, 255);
    padding: 11px 22px;
    border-radius: 4px;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #D2502A;
}

.btn-secondary {
    font-family: "Anybody", sans-serif;
    font-weight: 600;
    font-size: 15px;
    color:#0A0A0A;
    border-bottom: 2px solid rgb(10, 10, 10);
    padding-bottom: 3px;
    text-decoration: none;
}

.btn-secondary:hover {
    color: #D2502A;
}

#hero {
    padding-top: 84px;
}

#hero .text-block .h1-top-title {
    margin-bottom: 26px;
}

#hero .text-block h1 {
    font-size: clamp(56px, 8.5vw, 118px);
}

#hero .text-block p {
    max-width: 430px;
    margin: 26px 0px 0px;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.hero-buttons-container {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-top: 38px;
}

.image-block {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 6px;
    overflow: hidden;
}

.image-block img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.work-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.work-image-container {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: 6px;
    overflow: hidden;
    background: rgb(17, 17, 17);
    padding: 12px;
}

.work-text {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding: 26px;
    background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,.7));
}

.work-number {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 12px;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.62);
    margin-bottom: 6px;
    margin-top: 40px;
}

.work-title {
    font-family: "Anybody", sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 2.5vw, 40px);
    color: rgb(255, 255, 255);
    line-height: 1;
}

.work-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-text__text-block {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
    flex-wrap: wrap;
}

.portfolio-text__text-block h1 {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.portfolio-text__text-block p {
    display: inline-block;
    margin: 0;
    padding: 0;

    max-width: 320px;
    font-size: 15px;
    line-height: 1.6;
}

.portfolio-images-block {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 230px;
    gap: 16px;
}

.portfolio-image-container {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    background-color: rgba(0,0,0,.5);
}

.portfolio-image-container1 {
    grid-area: span 2 / span 2;
}

.portfolio-image-container2 {
    grid-column: span 2;
}

.portfolio-image-container5 {
    grid-column: span 2;
}

.portfolio-image-container5 .portfolio-image {
    object-position: 0% 0%;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-tag {
    position: absolute;
    left: 16px;
    bottom: 14px;
    pointer-events: none;
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    background: rgba(0, 0, 0, 0.55);
    padding: 4px 9px;
    border-radius: 3px;
    backdrop-filter: blur(4px);
}

#partners {
    border-top: 1px solid rgb(236, 236, 234);
    border-bottom: 1px solid rgb(236, 236, 234);
    background: rgb(250, 250, 249);
    margin: 60px 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
}

.partners-block {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 46px 32px;
}

.partners-text {
    font-family: "Hanken Grotesk", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 12px;
    font-weight: 600;
    color: rgb(154, 154, 152);
    text-align: center;
    margin-bottom: 30px;
}

.partner-images-block {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    align-items: center;
}

.partner-image-container {
    display: block;
    width: 100%;
    height: 64px;
    filter: grayscale(1);
    opacity: 0.8;
    transition: all .1s ease-in-out;
    border-radius: 8px;
    overflow: hidden;
}

.partner-image-container:hover {
    filter: grayscale(0);
    opacity: 1;
}

.partner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partner-image.partner-contain {
    object-fit: contain;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 64px;
    align-items: center; 
}

.about-copy {
    margin-top: 18px;
}

.usps {
    display: grid;
    margin-top: 20px;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.usp {
    font-size: 15px;
    color: rgb(26, 26, 24);
    border-top: 1px solid rgb(236, 236, 234);
    padding-top: 14px;
    list-style-position: inside;
    font-family: 'Hanken Grotesk',system-ui,sans-serif;
    -webkit-font-smoothing: antialiased;
}

.usp::marker {
    color:#D2502A;
}

#reviews {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    background-color: #0A0A0A;
}

.reviews-container {
    max-width: 1280px;
    margin: 0px auto;
    padding: 100px 32px;
}

.reviews-container h1 {
    color: #fff;
    margin-bottom: 56px;
}

.reviews-block {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review {
    border: 1px solid rgb(38, 38, 38);
    border-radius: 8px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    background: rgb(20, 20, 20);
}

.review .qoute-symbol {
    font-family: "Anybody", sans-serif;
    font-weight: 800;
    font-size: 40px;
    line-height: 0.6;
    color: rgb(210, 80, 42);
}

.review .review-text {
    font-size: 17px;
    line-height: 1.6;
    color: rgb(230, 230, 228);
    margin: 0px;
    flex: 1 1 0%;
}

.review-bottom {
    border-top: 1px solid rgb(38, 38, 38);
    padding-top: 18px;
}

.review .review-name {
    font-weight: 700;
    font-size: 16px;
    color: #fff;
}

.review .review-function {
    font-size: 13px;
    color: rgb(138, 138, 136);
    margin-top: 3px;
}

.instagram-text-block {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

#instagram {
    padding: 80px 32px;
}

.insta-header {
    font-family: "Anybody", sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 3.4vw, 42px);
    line-height: 1;
    letter-spacing: -0.01em;
    margin: 0px;
    color: #000;
    text-decoration: none;
}

.insta-header:hover {
    color:#D2502A;
}

.insta-tag {
    font-family: "Anybody", sans-serif;
    font-weight: 600;
    font-size: 17px;
    color: rgb(210, 80, 42);
    text-decoration: none;
}

.instagram-images-block {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.insta-image-container {
    width: 100%;
    aspect-ratio: 1/1;
}

.insta-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#contact {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    background-color: #0A0A0A;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 1280px;
    margin: 0px auto;
    padding: 110px 32px;
}

.contact-text-block h1 {
    color: #FFF;
}

.contact-text-block .contact-text {
    font-size: 17px;
    line-height: 1.6;
    color: rgb(181, 181, 179);
    max-width: 460px;
    margin: 26px 0px 0px;
}

.contact-button-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-button {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    border: 1px solid rgb(42, 42, 42);
    border-radius: 8px;
    padding: 22px 26px;
    cursor: pointer;
    font-family: "Anybody", sans-serif;
    font-weight: 700;
    font-size: 19px;
    color: #FFF;
    text-decoration: none;
}

.contact-button:hover {
    background-color: rgb(20, 20, 20);
}

.contact-button::after {
  content: "";
  position: absolute;
  right: 26px;
  top: calc(50% - .5rem);
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: 0.5rem;
  background: #D2502A;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath d='M566.6 342.6C579.1 330.1 579.1 309.8 566.6 297.3L406.6 137.3C394.1 124.8 373.8 124.8 361.3 137.3C348.8 149.8 348.8 170.1 361.3 182.6L466.7 288L96 288C78.3 288 64 302.3 64 320C64 337.7 78.3 352 96 352L466.7 352L361.3 457.4C348.8 469.9 348.8 490.2 361.3 502.7C373.8 515.2 394.1 515.2 406.6 502.7L566.6 342.7z'/%3E%3C/svg%3E") no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath d='M566.6 342.6C579.1 330.1 579.1 309.8 566.6 297.3L406.6 137.3C394.1 124.8 373.8 124.8 361.3 137.3C348.8 149.8 348.8 170.1 361.3 182.6L466.7 288L96 288C78.3 288 64 302.3 64 320C64 337.7 78.3 352 96 352L466.7 352L361.3 457.4C348.8 469.9 348.8 490.2 361.3 502.7C373.8 515.2 394.1 515.2 406.6 502.7L566.6 342.7z'/%3E%3C/svg%3E") no-repeat center / contain;
}

.contact-button span {
    font-family: "Hanken Grotesk", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 11px;
    color: rgb(138, 138, 136);
    margin-bottom: 6px;
}

.contact-bookings {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 26px;
    font-size: 14px;
    color: rgb(181, 181, 179);
}

.blinking-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgb(95, 209, 122);
    box-shadow: rgba(95, 209, 122, 0.18) 0 0 0 4px;
    animation: blink 1s ease-out infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

footer {
    width: 100%;
    background: rgb(10, 10, 10);
    color: rgb(255, 255, 255);
    border-top: 1px solid rgb(28, 28, 28);
}

footer p {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 46px 32px;
    font-size: 13px;
    color: rgb(106, 106, 104);
    text-align: right;
}

@media only screen and (max-width: 900px) {
    .contact-wrapper {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .contact-text-block {
        width: 100%;
    }

    .contact-button-block {
        width: 100%;
    }
}

@media only screen and (max-width: 800px) {

    header {
        width: 100vw;
    }
    
    .header-flex {
        padding: 10px 20px;
    }

    .navMenu {
        position: absolute;
        top: 0px;
        left: 0;
        right: 0;
        width: 100%;
        height: 100dvh;
        padding: 80px 20px 20px;
        background-color: #FFF;
        flex-direction: column;
        transform: scaleX(0);
        transform-origin: right;
        transition: transform .3s ease-in-out;
    }

    .active .navMenu {
        transform: scaleX(100%);
    }

    .logo {
        z-index: 2;
        padding: 9px 0;
    }

    .logo .jannesboonstra {
        font-size: 20px;
    }

    .logo .nl {
        font-size: 10px;
    }

    #hamburger {
        position: relative;
        display: block;
        width: 38px;
        height: 26px;
    }

    #hamburger .line {
        position: absolute;
        width: 100%;
        height: 3px;
        border-radius: 999px;
        background-color: #0A0A0A;
        transition: all .3s ease-in-out;
    }

    #hamburger .line1 {
        top: 0;
    }

    #hamburger .line2, #hamburger .line3 {
        top: calc(50% - 1px);   
    }

    #hamburger .line4 {
        bottom: 0;
    }

    .active #hamburger .line2 {
        transform: rotate(45deg);
    }

    .active #hamburger .line3 {
        transform: rotate(-45deg);
    }

    .active #hamburger .line1, .active #hamburger .line4{
        transform: scaleX(0);
    }

    section {
        padding: 8px 20px 48px;
    }

    #hero {
        padding-top: 42px;
    }

    #instagram {
        padding: 42px 20px;
    }

    #partners {
        margin-top: 10px;
    }

    footer p {
        padding: 30px 20px;
    }

    .contact-wrapper {
        padding: 42px 20px;
    }

    .work-wrapper, .reviews-block, .about-wrapper, .hero-wrapper, .usps {
        grid-template-columns: 1fr;
    }

    .about-wrapper .text-block {
        order: 1;
    }

    .about-wrapper .image-block {
        order: 2;
    }

    .partners-block, .reviews-container {
        padding: 36px 20px;
    }

    .partner-images-block {
        grid-template-columns: repeat(3,1fr);
    }

    .partner-image-container {
        filter: grayscale(0);
    }

    .instagram-images-block {
        grid-template-columns: repeat(3,1fr);
    }

    .portfolio-images-block {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-image-container1 {
        grid-area: span 2 / span 2;
    }

    .portfolio-image-container2 {
        grid-column: span 2;
    }

    .portfolio-image-container5 {
        grid-column: span 2;
    }
}

@media only screen and (max-width: 500px) {
    .partner-images-block {
        grid-template-columns: repeat(2,1fr);
    }

    .instagram-images-block {
        grid-template-columns: repeat(2,1fr);
    }
}