*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --bg: hsl(220, 15%, 97%);
    --fg: hsl(220, 25%, 10%);
    --card: hsl(0, 0%, 100%);
    --muted: hsl(220, 15%, 93%);
    --muted-fg: hsl(220, 10%, 42%);
    --border: hsl(220, 15%, 88%);
    --red: hsl(355, 78%, 50%);
    --blue: hsl(205, 85%, 50%);
    --orange: hsl(25, 90%, 55%);
    --pink: hsl(330, 80%, 55%);
    --gold: hsl(40, 70%, 50%);
    --font-display: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;
    --prestige: linear-gradient(135deg, hsl(220, 25%, 10%), hsl(220, 20%, 16%), hsl(220, 25%, 10%));
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--fg);
    line-height: 1.6;
    overflow-x: hidden
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display)
}

a {
    text-decoration: none;
    color: inherit
}

img {
    max-width: 100%;
    display: block
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem
}

.gold-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, hsla(25, 90%, 55%, 0.5), transparent)
}

.text-gradient {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-style: italic;
    background: linear-gradient(90deg, var(--red) 0%, var(--orange) 25%, var(--pink) 50%, var(--blue) 75%, var(--red) 100%);
    background-size: 400% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 6s ease infinite;
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }
}

.btn-red {
    background: var(--red);
    color: #fff;
    box-shadow: 0 4px 20px -4px hsla(355, 78%, 50%, 0.4);
    transition: all .3s;
    border: none;
    cursor: pointer
}

.btn-blue {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 4px 20px -4px hsla(205, 85%, 50%, 0.4);
    transition: all .3s;
    border: none;
    cursor: pointer
}

.btn-orange {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 4px 20px -4px hsla(25, 90%, 55%, 0.4);
    transition: all .3s;
    border: none;
    cursor: pointer
}

.btn-pink {
    background: var(--pink);
    color: #fff;
    box-shadow: 0 4px 20px -4px hsla(330, 80%, 55%, 0.4);
    transition: all .3s;
    border: none;
    cursor: pointer
}

.btn-red:hover,
.btn-blue:hover,
.btn-orange:hover,
.btn-pink:hover {
    opacity: .9;
    transform: translateY(-1px)
}

/* INTRO */
#intro-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--fg);
    transition: opacity .6s ease
}

#intro-overlay.fade-out {
    opacity: 0;
    pointer-events: none
}

.film-grain {
    position: absolute;
    inset: 0;
    opacity: .04;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E")
}

.intro-hline {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: hsla(0, 0%, 100%, 0.1);
    transform: scaleX(0);
    animation: hline 1.2s ease-out forwards
}

.intro-hline.top {
    top: 15%
}

.intro-hline.bottom {
    bottom: 15%
}

@keyframes hline {
    to {
        transform: scaleX(1)
    }
}

.intro-logo {
    opacity: 0;
    transform: scale(.8);
    animation: intro-logo-in .8s cubic-bezier(.16, 1, .3, 1) forwards
}

@keyframes intro-logo-in {
    to {
        opacity: 1;
        transform: scale(1)
    }
}

.intro-accent {
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
    animation: intro-accent 1s .5s ease-out forwards
}

@keyframes intro-accent {
    to {
        width: 120px
    }
}

.intro-tagline {
    opacity: 0;
    transform: translateY(10px);
    animation: intro-tag .6s .8s ease-out forwards
}

@keyframes intro-tag {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.shutter {
    position: absolute;
    left: 0;
    right: 0;
    background: var(--bg);
    height: 0
}

.shutter.top {
    top: 0;
    animation: shutter-top .7s cubic-bezier(.76, 0, .24, 1) forwards
}

.shutter.bottom {
    bottom: 0;
    animation: shutter-bottom .7s cubic-bezier(.76, 0, .24, 1) forwards
}

@keyframes shutter-top {
    to {
        height: 50%
    }
}

@keyframes shutter-bottom {
    to {
        height: 50%
    }
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all .3s
}

.navbar.scrolled {
    background: hsla(220, 15%, 97%, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .05)
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .75rem 0
}

.nav-logo {
    height: 5rem;
    width: auto;
    transition: height .3s
}

.navbar.scrolled .nav-logo {
    height: 3.5rem
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem
}

.nav-links a {
    font-family: var(--font-body);
    font-size: .875rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: hsla(220, 25%, 10%, 0.8);
    transition: color .3s
}

.nav-links a:hover {
    color: var(--red)
}

.navbar.hero-light .nav-links a {
    color: hsla(0, 0%, 100%, 0.9)
}

.navbar.hero-light .mobile-toggle {
    color: #fff
}

.navbar.hero-light .dark-toggle {
    border-color: hsla(0, 0%, 100%, 0.2);
    color: hsla(0, 0%, 100%, 0.7)
}

.nav-cta {
    padding: .625rem 1.5rem;
    border-radius: 9999px;
    font-size: .875rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase
}

.nav-cta:hover {
    color: #fff !important
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg)
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--bg);
    border-bottom: 1px solid var(--border)
}

.mobile-menu a {
    font-family: var(--font-body);
    font-size: .875rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: hsla(220, 25%, 10%, 0.8)
}

.mobile-menu.open {
    display: flex
}

@media(max-width:768px) {
    .nav-links {
        display: none
    }

    .mobile-toggle {
        display: block
    }
}

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg)
}

.hero canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem
}

.hero-logo-wrap {
    display: inline-block;
    position: relative;
    margin-bottom: 2.5rem
}

.hero-logo-wrap img {
    width: 14rem;
    height: auto;
    position: relative;
    z-index: 10;
    filter: drop-shadow(0 0 30px hsla(355, 78%, 50%, 0.3))
}

.hero-glow1,
.hero-glow2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px)
}

.hero-glow1 {
    inset: -4rem;
    background: radial-gradient(circle, hsla(355, 78%, 50%, 0.4), hsla(205, 85%, 50%, 0.3), transparent);
    opacity: .2;
    animation: glow1 4s ease-in-out infinite
}

.hero-glow2 {
    inset: -3rem;
    background: radial-gradient(circle, hsla(25, 90%, 55%, 0.3), hsla(330, 80%, 55%, 0.2), transparent);
    opacity: .15;
    animation: glow2 5s 1s ease-in-out infinite
}

@keyframes glow1 {

    0%,
    100% {
        transform: scale(1);
        opacity: .15
    }

    50% {
        transform: scale(1.15);
        opacity: .25
    }
}

@keyframes glow2 {

    0%,
    100% {
        transform: scale(1.1);
        opacity: .1
    }

    50% {
        transform: scale(1);
        opacity: .2
    }
}

.hero-subtitle {
    font-size: .875rem;
    letter-spacing: .4em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--orange)
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--fg)
}

.hero-quote {
    font-size: 1.25rem;
    max-width: 42rem;
    margin: 0 auto 3rem;
    font-style: italic;
    color: var(--muted-fg)
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap
}

.hero-buttons a {
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: .05em;
    text-transform: uppercase
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%)
}

.scroll-mouse {
    width: 1.25rem;
    height: 2.25rem;
    border: 1px solid hsla(220, 25%, 10%, 0.3);
    border-radius: 9999px;
    display: flex;
    justify-content: center
}

.scroll-dot {
    width: 4px;
    height: 4px;
    background: var(--orange);
    border-radius: 50%;
    margin-top: .5rem;
    animation: scroll-bounce 1.5s infinite
}

@keyframes scroll-bounce {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(10px)
    }
}

/* SECTIONS */
.section {
    padding: 7rem 0;
    position: relative
}

.section-label {
    font-family: var(--font-body);
    font-size: .875rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 1.5rem
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.75rem);
    font-weight: 700;
    line-height: 1.15
}

#about p.about-text {
    color: var(--muted-fg);
    font-size: 1.125rem;
    line-height: 1.8;
    max-width: 48rem;
    margin: 0 auto 1.5rem
}

/* ABOUT TABS */
.about-tabs {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap
}

.about-tab {
    padding: .625rem 1.25rem;
    border-radius: 9999px;
    font-size: .95rem;
    font-family: var(--font-body);
    border: 1px solid var(--border);
    background: transparent;
    color: var(--muted-fg);
    cursor: pointer;
    transition: all .3s
}

.about-tab.active {
    background: var(--fg);
    color: var(--bg);
    border-color: var(--fg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15)
}

.about-tab:hover:not(.active) {
    border-color: hsla(220, 25%, 10%, 0.3);
    color: var(--fg)
}

.about-tab-content {
    display: none;
    animation: fadeIn .5s ease
}

.about-tab-content.active {
    display: block
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* COLLAGE */
.collage {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    min-height: 420px
}

.collage img {
    position: absolute;
    object-fit: cover;
    object-position: center 59%;
    border-radius: .75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    border: 2px solid var(--bg)
}

.collage .c1 {
    top: 0;
    left: 5%;
    width: 55%;
    height: 60%;
    border-radius: 1rem;
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .25)
}

.collage .c2 {
    top: 4%;
    right: 0;
    width: 38%;
    height: 32%;
    z-index: 20
}

.collage .c3 {
    top: 40%;
    right: 2%;
    width: 35%;
    height: 28%;
    z-index: 20
}

.collage .c4 {
    bottom: 2%;
    left: 0;
    width: 40%;
    height: 32%;
    z-index: 20
}

.collage .c5 {
    bottom: 0;
    right: 10%;
    width: 42%;
    height: 30%;
    z-index: 30
}

.collage .c6 {
    top: 28%;
    left: 52%;
    width: 20%;
    height: 16%;
    z-index: 30;
    transform: rotate(-3deg)
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 64rem;
    margin: 0 auto
}

@media(max-width:768px) {
    .founder-grid {
        grid-template-columns: 1fr
    }

    .collage {
        max-width: 400px;
        margin: 0 auto
    }
}

.founder-bio h3 {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: 700;
    margin-bottom: .5rem
}

.founder-bio .subtitle {
    color: var(--muted-fg);
    font-size: .875rem;
    margin-bottom: 1rem
}

.founder-bio p {
    color: var(--muted-fg);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1rem
}

.founder-bio blockquote {
    border-left: 2px solid hsla(25, 90%, 55%, 0.3);
    padding-left: 1.5rem;
    margin-top: 1.5rem;
    font-style: italic;
    color: var(--muted-fg);
    font-size: 1.05rem;
    line-height: 1.75
}

/* PHILOSOPHY GRID */
.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 64rem;
    margin: 0 auto
}

@media(max-width:768px) {
    .philosophy-grid {
        grid-template-columns: 1fr
    }
}

.philosophy-grid h3 {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: 700;
    margin-bottom: 1.5rem
}

.philosophy-grid p {
    color: var(--muted-fg);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1rem
}

.philosophy-quote {
    background: var(--muted);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-top: 1.5rem
}

.philosophy-quote p {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--fg);
    margin: 0
}


/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem
}

@media(max-width:1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:640px) {
    .services-grid {
        grid-template-columns: 1fr
    }
}

.service-card {
    border: 1px solid hsla(0, 0%, 100%, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    background: hsla(0, 0%, 100%, 0.05);
    backdrop-filter: blur(4px);
    transition: all .5s
}

.service-card:hover {
    transform: translateY(-4px)
}

.service-card .icon {
    width: 2rem;
    height: 2rem;
    margin-bottom: 1.5rem
}

.service-card h3 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: .75rem
}

.service-card p {
    color: hsla(0, 0%, 100%, 0.5);
    font-size: .875rem;
    line-height: 1.7
}

/* PORTFOLIO — CAROUSEL */
.portfolio-wrap {
    position: relative;
    margin-top: 1rem
}

.portfolio-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 1rem 0 2rem;
    scrollbar-width: none
}

.portfolio-carousel::-webkit-scrollbar {
    display: none
}

.portfolio-card {
    flex: 0 0 min(380px, 80vw);
    scroll-snap-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: .75rem;
    height: 468px;
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease-out
}

.portfolio-card:hover img {
    transform: scale(1.05)
}

.portfolio-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsla(220, 25%, 5%, 0.9) 0%, hsla(220, 25%, 5%, 0.45) 52%, transparent 100%);
    pointer-events: none
}

.portfolio-badge {
    position: absolute;
    top: .75rem;
    left: .75rem;
    z-index: 10;
    padding: .25rem .75rem;
    border-radius: 9999px;
    font-size: .6875rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .1em
}

.portfolio-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 10
}

.portfolio-text h3 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .5rem;
    line-height: 1.2
}

.portfolio-text p {
    font-size: 1rem;
    color: hsla(0, 0%, 100%, 0.9);
    line-height: 1.5;
    text-shadow: 0 2px 12px hsla(220, 25%, 5%, 0.55)
}

.portfolio-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s;
    z-index: 20
}

.portfolio-card:hover .portfolio-accent {
    transform: scaleX(1)
}

.portfolio-dots {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-top: 1rem
}

.portfolio-dot {
    height: 4px;
    border-radius: 9999px;
    cursor: pointer;
    transition: all .3s;
    background: hsla(220, 10%, 42%, 0.3)
}

.portfolio-dot.active {
    background: var(--blue);
    width: 2.5rem
}

.portfolio-nav {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all .3s;
    box-shadow: 0 4px 20px hsla(0, 0%, 0%, 0.08)
}

.portfolio-nav:hover {
    background: var(--fg);
    color: var(--bg);
    border-color: var(--fg)
}

.portfolio-nav.prev {
    left: -1rem
}

.portfolio-nav.next {
    right: -1rem
}

@media(max-width:768px) {
    .portfolio-nav {
        display: none
    }
}

/* PROCESS */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem
}

@media(max-width:768px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:480px) {
    .process-grid {
        grid-template-columns: 1fr
    }
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center
}

.process-circle {
    position: relative;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    border: 2px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: var(--bg);
    transition: transform .3s, box-shadow .3s
}

.process-circle:hover {
    transform: scale(1.1)
}

.process-number {
    position: absolute;
    top: -.5rem;
    right: -.5rem;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    font-size: .75rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center
}

.process-line {
    display: none
}

@media(min-width:1024px) {
    .process-line {
        display: block;
        position: absolute;
        top: 2.5rem;
        left: 0;
        right: 0;
        height: 1px;
        background: var(--border);
        z-index: 0
    }
}

/* UPCOMING PROJECTS */
.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 0 auto
}

@media(min-width:1024px) {
    .upcoming-grid {
        gap: 1rem
    }
}

@media(max-width:1024px) {
    .upcoming-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:768px) {
    .upcoming-grid {
        grid-template-columns: 1fr
    }
}

.upcoming-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    min-height: 420px;
    cursor: pointer
}

.upcoming-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform .7s
}

.upcoming-card:hover img {
    transform: scale(1.1)
}

.upcoming-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsla(220, 25%, 5%, 0.85) 0%, hsla(220, 25%, 5%, 0.4) 50%, transparent 100%);
    transition: background .5s
}

.upcoming-card:hover .upcoming-overlay {
    background: linear-gradient(to top, hsla(220, 25%, 5%, 0.95) 0%, hsla(220, 25%, 5%, 0.6) 50%, hsla(220, 25%, 5%, 0.3) 100%)
}

.upcoming-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
    padding: .375rem 1rem;
    border-radius: 9999px;
    font-size: .75rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .1em
}

.upcoming-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 10
}

.upcoming-content h4 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .25rem
}

.upcoming-content .subtitle {
    font-size: .85rem;
    color: hsla(0, 0%, 100%, 0.6);
    display: flex;
    align-items: center;
    gap: .375rem;
    margin-bottom: .75rem
}

.upcoming-desc {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s ease, opacity .4s;
    opacity: 0
}

.upcoming-card:hover .upcoming-desc {
    max-height: 200px;
    opacity: 1
}

.upcoming-desc p {
    font-size: .875rem;
    color: hsla(0, 0%, 100%, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem
}

.upcoming-desc .link {
    font-size: .875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: .5rem
}

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 64rem;
    margin: 0 auto
}

@media(max-width:768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem
    }
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem
}

.contact-icon-wrap {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.contact-label {
    font-size: .875rem;
    color: var(--muted-fg);
    letter-spacing: .05em;
    text-transform: uppercase
}

.contact-value {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 500
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: .75rem;
    background: var(--card);
    border: 1px solid var(--border);
    font-family: var(--font-body);
    color: var(--fg);
    font-size: 1rem;
    outline: none;
    transition: box-shadow .3s;
    margin-bottom: 1.25rem
}

.contact-form input:focus,
.contact-form textarea:focus {
    box-shadow: 0 0 0 3px hsla(355, 78%, 50%, 0.15)
}

.contact-form textarea {
    resize: none;
    min-height: 8rem
}

.contact-form button {
    width: 100%;
    padding: 1rem;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase
}

/* FOOTER */
.site-footer {
    background: var(--prestige);
    overflow: hidden;
    position: relative
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 4rem 0
}

.footer-logo {
    height: 4rem;
    width: auto;
    filter: brightness(0) invert(1)
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center
}

.footer-links a {
    font-size: .875rem;
    color: hsla(0, 0%, 100%, 0.4);
    letter-spacing: .05em;
    text-transform: uppercase;
    transition: color .3s
}

.footer-links a:hover {
    color: hsla(0, 0%, 100%, 0.8)
}

.footer-copy {
    font-size: .875rem;
    color: hsla(0, 0%, 100%, 0.3)
}

.film-strip {
    position: relative;
    height: 3rem;
    overflow: hidden;
    border-radius: 2px;
    max-width: 20rem;
    margin: 0 auto 2rem
}

.film-perf {
    position: absolute;
    left: 0;
    right: 0;
    height: 6px;
    background: hsla(0, 0%, 100%, 0.15);
    z-index: 10;
    display: flex;
    align-items: center;
    overflow: hidden
}

.film-perf.top {
    top: 0
}

.film-perf.bottom {
    bottom: 0
}

.film-perf-inner {
    display: flex;
    animation: film-scroll 40s linear infinite;
    width: max-content
}

.film-perf-dot {
    width: .5rem;
    height: 4px;
    background: hsla(0, 0%, 100%, 0.3);
    border-radius: 1px;
    margin: 0 .75rem;
    flex-shrink: 0
}

.film-frames {
    display: flex;
    animation: film-scroll 40s linear infinite;
    width: max-content;
    padding: .5rem 0
}

.film-frame {
    flex-shrink: 0;
    width: 3rem;
    height: 2rem;
    margin: 0 1px
}

.film-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .4;
    filter: grayscale(1);
    transition: all .3s
}

.film-frame img:hover {
    filter: grayscale(0);
    opacity: .9
}

@keyframes film-scroll {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}


/* DARK TOGGLE */
.dark-toggle {
    padding: .5rem;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: hsla(220, 15%, 97%, 0.5);
    color: var(--muted-fg);
    cursor: pointer;
    transition: all .3s;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.dark-toggle:hover {
    color: var(--fg)
}

@media(max-width:768px) {
    #hero-dark-toggle {
        display: none !important
    }

    #hero-dark-toggle-mobile {
        display: inline-flex !important
    }
}

@media(min-width:769px) {
    #hero-dark-toggle-mobile {
        display: none !important
    }
}

/* HERO DARK */
.hero.dark {
    background: hsl(220, 20%, 8%)
}

.hero.dark h1 {
    color: hsl(0, 0%, 95%)
}

.hero.dark .hero-quote {
    color: hsl(220, 10%, 65%)
}

.hero.dark .scroll-mouse {
    border-color: hsla(0, 0%, 100%, 0.3)
}

/* FILM LIGHTBOX */
#film-lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    background: hsla(0, 0%, 0%, 0.6);
    opacity: 0;
    transition: opacity .3s
}

#film-lightbox.active {
    display: flex;
    opacity: 1
}

#film-lightbox img {
    max-width: 80vw;
    max-height: 70vh;
    object-fit: contain;
    border-radius: .5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform .3s
}

#film-lightbox.active img {
    transform: scale(1)
}

/* REVEAL */
/* ARTISTS */
.artists-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto
}

@media(max-width:1024px) {
    .artists-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(max-width:768px) {
    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem
    }
}

.artist-card {
    cursor: pointer;
    position: relative
}

.artist-photo {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .15)
}

.artist-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform .7s
}

.artist-card:hover .artist-photo img {
    transform: scale(1.1)
}

.artist-photo .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsla(220, 25%, 10%, 0.8), hsla(220, 25%, 10%, 0.2), transparent);
    opacity: 0;
    transition: opacity .5s;
    display: flex;
    align-items: flex-end;
    padding: 1.25rem
}

.artist-card:hover .artist-photo .overlay {
    opacity: 1
}

.artist-photo .overlay p {
    color: hsla(0, 0%, 100%, 0.9);
    font-size: .85rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.artist-photo .gradient-bottom {
    position: absolute;
    inset: 0 0 0 0;
    background: linear-gradient(to top, hsla(220, 25%, 10%, 0.5), transparent 33%);
    pointer-events: none
}

.artist-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    transition: color .3s
}

.artist-card:hover h3 {
    color: var(--red)
}

.artist-card .role {
    font-size: .85rem;
    color: var(--muted-fg);
    margin-top: .25rem
}

/* ARTIST MODAL */
.artist-modal-bg {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: hsla(220, 25%, 10%, 0.6);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity .3s
}

.artist-modal-bg.active {
    display: flex;
    opacity: 1
}

.artist-modal {
    background: var(--card);
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, .3);
    max-width: 48rem;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr 1fr
}

@media(max-width:768px) {
    .artist-modal {
        grid-template-columns: 1fr
    }
}

.artist-modal .modal-photo {
    position: relative
}

.artist-modal .modal-photo img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    object-position: top;
    border-radius: 1.5rem 0 0 1.5rem
}

@media(max-width:768px) {
    .artist-modal .modal-photo img {
        border-radius: 1.5rem 1.5rem 0 0;
        max-height: 300px
    }
}

.artist-modal .modal-photo .credit {
    position: absolute;
    bottom: .75rem;
    left: .75rem;
    font-size: .7rem;
    color: hsla(0, 0%, 100%, 0.7);
    background: hsla(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    padding: .25rem .625rem;
    border-radius: 9999px
}

.artist-modal .modal-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative
}

.artist-modal .modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--muted);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s;
    font-size: 1.1rem;
    color: var(--fg)
}

.artist-modal .modal-close:hover {
    background: var(--border)
}

.artist-modal .modal-role {
    font-size: .8rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 500;
    margin-bottom: .5rem
}

.artist-modal .modal-name {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: .25rem
}

.artist-modal .modal-bio {
    color: var(--muted-fg);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.5rem
}

.artist-modal .modal-kaisa {
    background: var(--muted);
    border-radius: .75rem;
    padding: 1rem
}

.artist-modal .modal-kaisa .label {
    font-size: .7rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--muted-fg);
    font-weight: 500;
    margin-bottom: .25rem
}

.artist-modal .modal-kaisa .value {
    font-size: .9rem;
    color: var(--fg);
    line-height: 1.5
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

/* MANIFEST */
.manifest-wrap {
    max-width: 40rem;
    margin: 0 auto;
    /* text-align: center; */
    position: relative;
    padding: 2.5rem 2rem
}

.manifest-wrap .poem-body {
    font-family: var(--font-display);
    font-size: 1.15rem;
    line-height: 1.6;
    font-style: italic;
    color: hsla(220, 25%, 10%, 0.75);
    letter-spacing: 0.03em
}

.manifest-wrap .poem-body .title {
    font-size: 1.3rem;
    color: hsla(220, 25%, 10%, 0.9)
}

.manifest-wrap .poem-body .closing {
    color: hsla(220, 25%, 10%, 0.9)
}

.manifest-wrap .poem-body .stanza {
    margin-bottom: 1.25rem
}

.manifest-wrap .line-accent {
    width: 2rem;
    height: 1px;
    background: hsla(25, 90%, 55%, 0.4);
    margin: 0 auto
}



.collage {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    min-height: 420px
}

.collage .slot {
    position: absolute;
    overflow: hidden
}

.collage .slot img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    transition: opacity 3s ease-in-out
}

.collage .c1 {
    top: 0;
    left: 5%;
    width: 55%;
    height: 60%;
    border-radius: 1rem;
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .25)
}

.collage .c2 {
    top: 4%;
    right: 0;
    width: 38%;
    height: 32%;
    border-radius: .75rem;
    z-index: 20;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    border: 2px solid var(--bg)
}

.collage .c3 {
    top: 40%;
    right: 2%;
    width: 35%;
    height: 28%;
    border-radius: .75rem;
    z-index: 20;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    border: 2px solid var(--bg)
}

.collage .c4 {
    bottom: 2%;
    left: 0;
    width: 40%;
    height: 32%;
    border-radius: .75rem;
    z-index: 20;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    border: 2px solid var(--bg)
}

.collage .c5 {
    bottom: 0;
    right: 10%;
    width: 42%;
    height: 30%;
    border-radius: .75rem;
    z-index: 30;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    border: 2px solid var(--bg)
}

.collage .c6 {
    top: 28%;
    left: 52%;
    width: 20%;
    height: 16%;
    border-radius: .75rem;
    z-index: 30;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    border: 2px solid var(--bg)
}