/* Raleway Regular (Variable Weight) */
@font-face {
  font-family: 'Raleway';
  src: url('01_Logo/fonts/Raleway-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900; /* Variable range */
  font-style: normal;
  font-display: swap;
}

/* Raleway Italic (Variable Weight) */
@font-face {
  font-family: 'Raleway';
  src: url('01_Logo/fonts/Raleway-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* Playfair Display Regular (Variable opsz, wdth, wght) */
@font-face {
  font-family: 'Playfair';
  src: url('01_Logo/fonts/Playfair-VariableFont_opsz,wdth,wght.ttf') format('truetype');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

/* Playfair Display Italic */
@font-face {
  font-family: 'Playfair';
  src: url('01_Logo/fonts/Playfair-Italic-VariableFont_opsz,wdth,wght.ttf') format('truetype');
  font-weight: 300 900;
  font-style: italic;
  font-display: swap;
}


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

/* Variables */
:root {
    --kp-blue: #0033ff;
    --kp-blue80: #3364ff;
    --kp-white: #f7f7ff;
    --kp-black: #100404;
    --ff1: "Raleway", sans-serif;
    --ff2: "Playfair", serif;
    --p: 1.1rem/1.6em var(--ff1);
    --h1: 500 10rem/1.2em var(--ff1);
    --h2: italic 5rem/1.2em var(--ff2);
    --h3: 370 1.8rem/1.2em var(--ff1);
    --xs: 0.25rem;
    --s: 0.5rem;
    --m: 1rem;
    --l: 2rem;
    --xl: 4rem;
    --xxl: 8rem;
    --b: solid var(--kp-blue) 2px;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    color: var(--kp-blue);
    background-color: var(--kp-white);
    overflow-x: hidden;
}

h1 {
    font: var(--h1);
    text-transform: uppercase;
    text-align: center;
    padding: var(--xxl) 0;
}

h2 {
    font: var(--h2);
    text-transform: uppercase;
}

h3 {
    font: var(--h3);
    text-transform: uppercase;
    padding-top: var(--l);
}

p {
    font: var(--p);
    padding-top: var(--s);
}

a {
    font: var(--p);
}

a:visited {
    color: inherit;
}

a:hover {
    color: var(--kp-black);
}

/* HEADER */
.navbar {
    top: 0;
    left: 0;
    position: sticky;
    padding: var(--m) var(--l);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: solid 2px var(--kp-blue);
    background-color: var(--kp-white);
    z-index: 1000;
}

.nav-links-container {
    display: flex;
    gap: var(--m);
}

.nav-links-container a {
    font-size: 1.3rem;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 450;
}

.nav-img {
    display: block;
    height: 4rem;
    width: auto;
    position: relative;
    z-index: 2;
}

.nav-logo-link {
    position: relative;
    display: inline-block;
    overflow: visible;
}

.hover-slide-l {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hover-slide-r {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.nav-img-mask {
    position: absolute;
    height: 100%;
    width: 68px;
    left: -2rem;
    top: 0;
    z-index: 1;
    background-color: var(--kp-white);
}

@media (max-width: 400px) {
    .nav-links-container a {
        font-size: 1rem;
    }
}

/* NoScrolling */

.no-scrolling {
    scrollbar-width: none;
    -ms-overflow-style: none;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
}

.no-scrolling::-webkit-scrollbar {
    display: none;
}

/* Landing page */


.feature-heading {
    flex: 1;
}

.shrink-h1,
.shrink-h1 a {
    font: var(--h1);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 8vw;
    line-height: 8vw;
    text-align: left;
    padding: 0;
}

.shrink-h1 {
    display: inline-block;
}

.shrink-h2 {
    font-size: 2vw;
    padding-left: 0.5vw;
}

.content-padded {
    padding: var(--l);
}

.content-fluid {
    padding: var(--l) 0;
}


.landing-page-display {
    display: flex;
    align-items: end;
    justify-content: space-between;
    height: 86vh;
    gap: var(--m);
}

.feature-image {
    flex: 1;
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: relative;
}

/* Image Slideshow */

#slideshow {
    display: block;
    transition: opacity 0.3s ease;
}

.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kp-blue);
    font: var(--h2);
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    gap: var(--xs);
}

.feature-image:hover #slideshow {
    opacity: 0.4;
    cursor: pointer;
}

.feature-image:hover .overlay {
    opacity: 1;
}

.tag-serif {
    text-transform: uppercase;
    font-size: 2rem;
    font-family: var(--ff2);
    font-style: italic;
}

.tag-san {
    text-transform: uppercase;
    font-style: normal;
    font-family: var(--ff1);
    font-weight: 450;
    font-size: 1.62rem;
    margin-top: -1px;
}

/* Media Queries */

@media (max-width: 800px) {
    .landing-page-display {
        display: flex;
        flex-direction: column-reverse;
        gap: var(--l);
        align-items: center;
    }

    .shrink-h1,
    .shrink-h1 a {
        font-size: calc(var(--l)*1.5);
        line-height: calc(var(--l)*1.5);
    }

    .shrink-h2 {
        font-size: calc(var(--m)*1.5);
        padding-left: 0.1rem;
    }

    .feature-image {
        flex: 3;
    }

    .feature-heading {
        flex: 1;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

}

@media (max-height: 900px) {
    .landing-page-display {
        height: 84vh;
    }
}

@media (max-height: 800px) {
    .landing-page-display {
        height: 82vh;
    }
}

@media (max-height: 700px) {
    .landing-page-display {
        height: 80vh;
    }
}

@media (max-height: 600px) {
    .landing-page-display {
        height: 78vh;
    }
}

/* Loader */

#loader {
    position: fixed;
    inset: 0;
    background-color: var(--kp-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow: hidden;
}

#loader-wrapper-logo,
#loader-wrapper-work,
#loader-wrapper-about {
  position: relative;
  overflow: visible;
  aspect-ratio: 1080 / 722.67;
  width: clamp(72px, 8vw, 120px);
  height: auto;
}

#loader-logo {
  display: block;
  width: 100%;
  height: auto;
  transform-origin: center;
  will-change: transform;
}

#logo-cover {
  position: absolute;
  inset: 0;
  background-color: var(--kp-blue);
  z-index: 10;
  transform: translateY(0%);
  will-change: transform;
}


.logo-piece {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    transform-origin: center;
    will-change: transform;
}



/*about me Image Grid */

.about-me-hero {
    display: flex;
    gap: var(--m);
    align-items: center;
    padding: var(--l) var(--l) var(--xl) var(--l);
}

.about-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s);
    max-width: 100%;
    flex: 1;
}

.about-image-grid img {
    width: 100%;
    height: auto;
    display: block;
}

.about-line {
    flex: 1;
}

.about-tag-line {
    display: flex;
    gap: var(--s);
    justify-content: center;
    align-items: center;
    padding: var(--xl) 0;
}

.about-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s);
    max-width: 100%;
}

.about-image-grid img {
    width: 100%;
    height: auto;
    display: block;
    z-index: 10;
}

.about-image-grid .empty {
    position: relative;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.about-image-grid .arrow {
    position: absolute;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
}

.about-image-grid .empty .h2-serif {
    font-size: 1.3rem;
    text-align: center;
}

.arrow.up {
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
}

.arrow.down {
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
}

.arrow.left {
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
}

.arrow.right {
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
}


/* About Me Info */

.about-me-info {
    display: flex;
    align-items: start;
    gap: var(--m);
    padding: var(--xxl) var(--l);
    border-top: var(--b);
}

.about-me-headline {
    flex: 1;
    padding: 0 0 var(--l) 0;
}

.about-me-text {
    flex: 1;
}

.addition {
    font-size: 1rem;
    font-style: italic;
}

.about-me-info a {
    font: inherit;
}

.first {
    padding-top: var(--m);
}


/* Footer */
.kp-footer {
    padding: var(--l);
    background-color: var(--kp-blue);
    color: var(--kp-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    bottom: 0;
}

.footer-tag {
    display: flex;
    color: inherit;
    gap: var(--xs);
    margin-top: 2px;
}

.footer-links {
    display: flex;
    gap: var(--m);
}

.p-serif {
    font-size: 1.2rem;
    font-family: var(--ff2);
    text-transform: uppercase;
    font-style: italic;
    padding: 0;
}

.p-san {
    font-style: normal;
    font-family: var(--ff1);
    font-weight: 450;
    font-size: 1rem;
    text-transform: uppercase;
    margin-top: 2px;
    padding: 0;
}

.lc {
    text-transform: lowercase;
}

.solve-btn {
    padding: 0.5rem 0.75rem;
    border: none;
    border-radius: 0.5rem;
    font: inherit;
    cursor: pointer;
    background: none;
    color: var(--kp-blue);
    font: var(--h2);
    font-size: 1.5rem;
    text-transform: uppercase;
}

.solve-btn[disabled] {
    opacity: 0.6;
    cursor: default;
}

.puzzle-wrap {
    position: relative;
}

.puzzle-reveal {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 10;
    flex: 1;

    user-select: none;
    -webkit-user-drag: none;
}

.h2-serif.slot,
.h2-san.slot,
.slot {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
}


.slot-reel {
    display: inline-block;
    will-change: transform, filter;
    width: 11rem;
}

.lever-btn {
    background: transparent;
    border: 0;
    padding: 0;
    margin-left: 12px;
    cursor: pointer;
    vertical-align: middle;
    line-height: 0;
}

.lever-btn img {
    display: block;
    width: auto;
    height: 80px;
    user-select: none;
    -webkit-user-drag: none;
}

@media (max-width: 1350px) {
    .about-me-hero {
        flex-direction: column-reverse;
    }
}

@media (max-width: 700px) {
    .arrow {
        display: none !important;
    }

    .solve-btn {
        font-size: 0.9rem;
    }

    .p-serif {
        font-size: 1.1rem;
    }

    .p-san {
        font-size: 0.9rem;
    }
}

@media (max-width: 1100px) {
    .about-me-info {
        flex-direction: column;
        padding-top: var(--m);
    }
}

@media (max-width: 550px) {
    .about-me-info h2 {
        font-size: 2.5rem;
    }

    .about-me-info p {
        font-size: 0.9rem;
    }

    .about-me-info h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 650px) {
    .kp-footer {
        flex-direction: column;
        gap: var(--s);
    }
}

.work-headline {
    display: flex;
    justify-content: center;
}

.work-show {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 100%;
    padding: var(--xl) 0;
}

.work-card:hover {
    color: inherit;
    background-color: var(--kp-blue);
    color: var(--kp-white);
    transition: all 300ms ease;
}

.work-card:first-child {
    border-left: 2px solid var(--kp-blue);
    border-top: 2px solid var(--kp-blue);
}

.work-card:last-child {
    border-bottom: 2px solid var(--kp-blue);
    border-right: 2px solid var(--kp-blue);
}

.work-card:nth-last-child(-n + 4) {
    border-bottom: 2px solid var(--kp-blue);
}

.work-card:nth-child(4n + 1) {
    border-left: 2px solid var(--kp-blue);
}

.work-card:nth-child(4n) {
    border-right: 2px solid var(--kp-blue);
}

.work-card:nth-child(-n + 4) {
    border-top: 2px solid var(--kp-blue);
}

.work-card-title h2 {
    font-size: 2.2rem;
}

.work-card-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-position: center;
    position: relative;
    object-fit: cover;
}

.work-card>*:nth-child(3) {
    margin-top: auto;
}

@media (max-width: 1100px) {

    .work-show {
        grid-template-columns: repeat(2, 1fr);
    }

    .work-card:nth-last-child(-n + 4) {
        border-bottom: 1px solid var(--kp-blue);
    }

    .work-card:nth-last-child(-n + 2) {
        border-bottom: 2px solid var(--kp-blue);
    }

    .work-card:nth-child(4n + 1) {
        border-left: 2px solid var(--kp-blue);
    }

    .work-card:nth-child(2n + 1) {
        border-left: 2px solid var(--kp-blue);
    }

    .work-card:nth-child(4n) {
        border-right: 1px solid var(--kp-blue);
    }

    .work-card:nth-child(2n) {
        border-right: 2px solid var(--kp-blue);
    }

    .work-card:nth-child(-n + 4) {
        border-top: 1px solid var(--kp-blue);
    }

    .work-card:nth-child(-n + 2) {
        border-top: 2px solid var(--kp-blue);
    }
}

@media (max-width: 550px) {
    .work-show {
        grid-template-columns: repeat(1, 1fr);
    }

    .work-card {
        border-right: 2px solid !important;
        border-left: 2px solid !important;
        border-top: 1px solid !important;
        border-bottom: 1px solid !important;
    }

    .work-card:first-of-type {
        border-top: 2px solid !important;
    }

    .work-card:last-of-type {
        border-bottom: 2px solid !important;
    }


}

@media (max-width: 1000px) {
    h1 {
        font-size: 15vw;
        line-height: 1.05;
        text-wrap: balance;
        hyphens: auto;
        overflow-wrap: anywhere;
    }
}

.work-card {
    padding: var(--m);
    width: 100%;
    height: auto;
    box-sizing: border-box;
    border: 1px solid var(--kp-blue);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background-color: var(--kp-white);
}

.page-wipe {
    position: fixed;
    inset: 0;
    background: var(--kp-blue);
    clip-path: circle(0px at 50% 50%);
    opacity: 1;
    pointer-events: none;
    z-index: 9999;
}

.work-card-title,
.work-card-categories {
    padding-left: var(--xs);
}

.work-card-categories {
    padding-bottom: var(--s);
}

.work-card.tinted::after {
    opacity: 0.25;
}

.work-card {
    transition: filter 0.3s ease, transform 0.3s ease;
}

.work-card.dimmed {
    filter: blur(1px) brightness(0.95);
}


/* --------------------- Filet-O-Manifesto --------------------- */

.fish-slideshow {
    padding: var(--xl) 0;
    display: flex;
    flex-direction: column;
    gap: var(--l);
}

.fish-rules-container {
    flex: 1;
    display: flex;
    flex-direction: row;
    gap: var(--m);
    align-items: flex-start;
}

.rule .rule-text {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    transition: max-height 320ms ease, opacity 220ms ease, margin-top 220ms ease;
}

.rule.active .rule-text {
    max-height: 1000px;
    opacity: 1;
    margin-top: 0.5rem;
}

.fish-img-container {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 2;
}

.fish-img-container .fish-layer {
    position: absolute;
    inset: 0;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0;
    pointer-events: none;
    transition: opacity 250ms ease;
}

.fish-img-container .fish-layer.is-visible {
    opacity: 0.8;
}

.placeholder .tag-san {
    margin-top: 0px;
}

.fish-img-container .placeholder {
    width: auto;
    height: 50vh;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--s);
    pointer-events: none;
    transition: opacity 250ms ease;
}

.fish-img-container .placeholder.hidden {
    opacity: 0;
}


.fish-img-container img {
    width: auto;
    height: auto;
}

.fish-headline {
    font-size: 1.5rem;
}

.rule {
    padding: var(--m);
    cursor: pointer;
    transition: all 380ms ease;
    display: flex;
    flex-direction: column;
}

.fish-description h1 {
    padding-bottom: var(--m);
}

.fish-description {
    padding-bottom: var(--xxl);
}

.rule p {
    font-size: 0.9rem;
}

.rule .addition {
    font-size: 0.75rem;
}

.rule1 {
    background-color: #92999e1a;
    border-top: solid 2px #92999e;
}

.rule2 {
    background-color: #ba44361a;
    border-top: solid 2px #ba4436;
}

.rule3 {
    background-color: #b68d521a;
    border-top: solid 2px #b68d52;
}

.rule4 {
    background-color: #b460551a;
    border-top: solid 2px #b46055;
}

.rule5 {
    background-color: #69858e1a;
    border-top: solid 2px #69858e;
}

.rule1:hover,
.rule1.active {
    background-color: #92999e;
    color: var(--kp-white);
}

.rule2:hover,
.rule2.active {
    background-color: #ba4436;
    color: var(--kp-white);
}

.rule3:hover,
.rule3.active {
    background-color: #b68d52;
    color: var(--kp-white);
}

.rule4:hover,
.rule4.active {
    background-color: #b46055;
    color: var(--kp-white);
}

.rule5:hover,
.rule5.active {
    background-color: #69858e;
    color: var(--kp-white);
}

@media (max-width: 1100px) {

    .rule {
        transition: all 100ms ease;
    }

    .rule .rule-text {
        transition: max-height 220ms ease, opacity 120ms ease, margin-top 120ms ease;
    }

    .fish-rules-container {
        flex-direction: column;
    }

    .fish-description {
        padding-bottom: var(--xl);
    }

    .fish-description p {
        padding: 0;
    }

}

.image-grid {
    padding: var(--xl) 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: var(--m);
    align-items: flex-start;
}

.image-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: center;
}

.image-grid-item {
    position: relative;
    overflow: hidden;
    display: block;
    flex: 1 1 clamp(250px, 35vw, 450px);
    max-width: 100%;
    aspect-ratio: 4/3;
}

.hochkant{
    aspect-ratio: 1/2;
}

@media (max-width: 600px) {
    .image-grid {
        gap: calc(var(--m) * 0.75);
    }

    .image-grid-item {
        flex-basis: clamp(140px, 48vw, 220px);
    }
}

.fish-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding: var(--xxl) var(--xxl) 0 var(--xxl);
    margin: 0 var(--xxl);
}


@media (max-width: 1100px) {
    .padding-bottom-remove {
        padding-bottom: var(--m);
    }
}

.ortus-h1 {
    display: none;
}

.ortus-headline {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--xxl) var(--l);
}

.ortus-headline img {
    width: 90vw;
    height: 100%;
}

.ortus-headline img:first-of-type {
    margin-left: -5vw;
}

.ortus-headline img:last-of-type {
    margin-left: 10vw;
}


.scroll-gallery {
    display: grid;
    gap: var(--xs);
    padding: var(--xl) 0;
    position: relative;
}

.row {
    height: 6.2vh;
    overflow: hidden;
    position: relative;
}


.track {
    display: inline-flex;
    align-items: stretch;
    white-space: nowrap;
    translate: 0 0;
    will-change: transform;
    height: 100%;
}

.track>img {
    display: block;
    height: 100%;
    width: auto;
    flex: 0 0 auto;
    user-select: none;
    pointer-events: none;
    object-fit: cover;
}

.ortus-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--xl, 2rem) var(--l, 1.25rem);
}

.numbers-track {
    display: flex;
    gap: var(--m, 12px);
}

.tile {
    position: relative;
    height: 300px;
    aspect-ratio: 1 / 2;
    background: var(--kp-black);
    overflow: hidden;
    flex: 0 0 auto;
    transform-origin: center center;
}

.tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 850px) {
    .numbers-track .tile:nth-child(n+3) {
        display: none;
    }
}

@font-face {
    font-family: 'Ortus Thin';
    src: url('02_work/Ortus/Ortus_Font/Ortus-Thin.otf') format('opentype');
    font-weight: thin;
    font-style: normal;
}

@font-face {
    font-family: 'Ortus Extra Light';
    src: url('02_work/Ortus/Ortus_Font/Ortus-ExtraLight.otf') format('opentype');
    font-weight: thin;
    font-style: normal;
}

@font-face {
    font-family: 'Ortus Light';
    src: url('02_work/Ortus/Ortus_Font/Ortus-Light.otf') format('opentype');
    font-weight: thin;
    font-style: normal;
}

@font-face {
    font-family: 'Ortus Regular';
    src: url('02_work/Ortus/Ortus_Font/Ortus-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Ortus Medium';
    src: url('02_work/Ortus/Ortus_Font/Ortus-Medium.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}


@font-face {
    font-family: 'Ortus Semi Bold';
    src: url('02_work/Ortus/Ortus_Font/Ortus-SemiBold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}


@font-face {
    font-family: 'Ortus Bold';
    src: url('02_work/Ortus/Ortus_Font/Ortus-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Ortus Extra Bold';
    src: url('02_work/Ortus/Ortus_Font/Ortus-ExtraBold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Ortus Black';
    src: url('02_work/Ortus/Ortus_Font/Ortus-Black.otf') format('opentype');
    font-weight: bolder;
    font-style: normal;
}

.ortus-description {
    padding: var(--xl) var(--l) 0 var(--l);
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: var(--l);
    color: var(--kp-black);
}

.ortus-card {
    flex: 1;
    align-self: flex-start;
}

.ortus-card>p {
    border-bottom: solid 2px var(--kp-black);
    font-family: 'Ortus Regular';
    padding-bottom: var(--s);
}

.p17 {
    font-size: 16px;
}

.p32 {
    font-size: 32px;
    line-height: 40px;
}

.p64 {
    font-size: 64px;
    line-height: 74px;
}

.ortus-description h3 {
    font-family: 'Ortus Regular';
    text-transform: none;
    padding-top: var(--xs);
}

.ortus-card-description .addition {
    font-family: 'Ortus Regular';
    padding-top: var(--xs);
    font-style: normal;
}

.ortus-card-description {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-content: flex-start;
}

@media (max-width: 1150px) {
    .ortus-description {
        flex-direction: column;
        padding-bottom: var(--xxl);
    }
}


.ortus-weights {
    padding: 0 var(--l) var(--xl) var(--l);
}

.ortus-font {
    font-size: 10vw;
    color: var(--kp-black);
    line-height: 8.5vw;
}

.thin {
    font-family: "Ortus Thin";
}

.extra-light {
    font-family: "Ortus Extra Light";
}

.light {
    font-family: "Ortus Light";
}

.regular {
    font-family: "Ortus Regular";
}

.medium {
    font-family: "Ortus Medium";
}

.semi-bold {
    font-family: "Ortus Semi Bold";
}

.bold {
    font-family: "Ortus Bold";
}

.extra-bold {
    font-family: "Ortus Extra Bold";
}

.black {
    font-family: "Ortus Black";
}

.ortus-content .work-show {
    padding: var(--xl) var(--l);
}

.ortus-content .work-card {
    padding: var(--l) var(--l) var(--s) var(--l);
    aspect-ratio: 2 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: lowercase;
    cursor: default;
    border-color: var(--kp-black);
}

.click-instructions {
    display: none;
}

.ortus-content .work-card:hover {
    text-transform: uppercase;
    color: var(--kp-white);
    background-color: var(--kp-black);
    transition: all 0ms ease;
}

@media (max-width: 800px) {
    .p64 {
        font-size: 55px;
    }

    .click-instructions {
        display: flex;
        padding: var(--xl) 0 0 0;
        justify-content: center;
    }

    .ortus-content .work-card.active {
        text-transform: uppercase;
        color: var(--kp-white);
        background-color: var(--kp-black);
        transition: all 0ms ease;
    }
}

@media (max-width: 550px) {
    .ortus-font {
        font-size: 20vw;
        line-height: 17vw;
    }
}



:root {
    --film-blue: var(--kp-blue);
    --b: 4px;

    --rail-h: clamp(18px, 3.5vw, 56px);
    --hole-w: clamp(16px, 3vw, 40px);
    --hole-gap: clamp(28px, 5vw, 64px);

    --col-w: clamp(300px, 65vw, 1100px);
}

.film-wrap {
    padding: var(--xl) 0;
}

.film-grid {
    display: grid;
    grid-template-columns: repeat(3, var(--col-w));
    grid-template-rows: auto auto auto;
    width: calc(3 * var(--col-w));
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.holes {
    grid-column: 1 / -1;
    height: var(--rail-h);
    background:
        repeating-linear-gradient(to right,
            var(--kp-white) 0 var(--hole-w),
            transparent var(--hole-w) calc(var(--hole-w) + var(--hole-gap))),
        var(--film-blue);
}

.holes.top {
    border-top: var(--b) solid var(--film-blue);
}

.holes.bottom {
    border-bottom: var(--b) solid var(--film-blue);
}

.cell {
    border: var(--b) solid var(--film-blue);
    aspect-ratio: 16 / 9;
    background: var(--kp-white);
}

.video {
    position: relative;
    overflow: hidden;
}

.video .video-box {
    position: relative;
    width: 100%;
    height: 100%;
}

.video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.mr-making-of {
    padding: var(--xl) 0;
}

.carousel {
    padding-top: var(--xl);
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 35vh;
}

.track {
    display: flex;
    align-items: center;
    gap: var(--m);
    will-change: transform;
}

.track img {
    height: 100%;
    width: auto;
    flex: 0 0 auto;
    user-select: none;
    pointer-events: none;
    object-fit: contain;
}

.carousel:hover {
    --paused: 1;
}


/* ----------- Seatscapes ----------*/

.seatscapes-layout {
    display: grid;
    grid-template-columns: minmax(220px, 28vw) 1fr;
    grid-template-areas: "city viewer";
    gap: clamp(16px, 3vw, 32px);
    align-items: start;
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 clamp(8px, 2vw, 24px);
}

.viewer {
    position: relative;
    grid-area: viewer;
}

.stage {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
}

/* Links: Städte-Liste */
.city-list {
    grid-area: city;
    position: relative;
    max-height: calc(100vh - 180px);
    overflow-y: auto;
    padding-block: 40vh;
    scroll-snap-type: y mandatory;
}

.city-item {
    pointer-events: none;
    background: transparent;
    border-left: none;

    display: grid;
    grid-template-columns: 24px 1fr;
    column-gap: 10px;
    row-gap: 2px;

    padding: 16px 0;
    margin: 8px 0;

    scroll-snap-align: center;
    scroll-snap-stop: always;

    opacity: .38;
    color: #0f172a;
}

.city-item.is-active {
    opacity: 1;
}

.city-item.is-hidden {
  visibility: hidden;        /* bleibt im Layout -> Liste scrollt weiter */
  scroll-snap-align: none;   /* kein Snap auf unsichtbare Items */
  pointer-events: none;      /* optional */
}


.city-name {
    font: 600 16px/1.2 "Raleway";
    text-transform: uppercase;
    color: var(--kp-blue);
    padding: var(--s) 0;
}

.city-info {
    grid-column: 2;
    font: 400 13px/0.8 "Raleway";
    color: var(--kp-blue);
    font-style: italic;
}

.city-dot {
    margin: var(--s) 0;
    grid-column: 1;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--kp-blue);
    align-self: start;
    transform: translateY(2px);
}


#seatSVG {
    z-index: 1;
}

#texCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: block;
}

#seatSVG {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
}

.st1 {
    fill: white;
    stroke: #03f;
    stroke-width: 2px;
    stroke-miterlimit: 10;
}

.fabric+path {
    stroke: #03f;
    stroke-width: 1px;
    fill: none;
}

.proj {
    fill: none;
    stroke: none;
    pointer-events: none;
}

.description {
    font-size: 1.5rem;
    padding: var(--xl) 0;
}

@media (max-width: 1000px) {
  .seatscapes-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "viewer"
      "city";
    gap: clamp(16px, 4vw, 32px);
    padding: var(--l) 0;
  }

  .city-list {
    max-height: 200px;
    padding-block: 16px;
  }
}

.let-go-tag-line {
    display: flex;
    gap: var(--s);
    justify-content: center;
    align-items: center;
    padding: var(--xxl) 0;
}

@media (max-width: 900px) {
    .let-go-tag-line {
        flex-direction: column;
    }
}

.square {
    aspect-ratio: 1/1;
}

.wiki-logo-img {
    padding: 15vh 0;
    width: 60%;
    height: 60%;
    display: flex;
    position: relative;
    margin: auto;
}

.wiki-logo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: relative;
}

.footer-copyright>a{
    color: var(--kp-white);
}

.impressum-h1{
    line-height: normal;
    padding: var(--xl) 0;
}

.imprint-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 84vh;
}