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

.menu-instagram a {
    font-size: 0;
    position: relative;
    display: flex;
    align-items: center;
}

.menu-instagram a::before {
    content: "";
    width: 20px;
    height: 20px;
    display: block;
    background: currentColor;
    -webkit-mask: url("https://cdn.jsdelivr.net/npm/simple-icons@v11/icons/instagram.svg") no-repeat center;
    mask: url("https://cdn.jsdelivr.net/npm/simple-icons@v11/icons/instagram.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.menu-instagram a:hover::before {
    opacity: 0.7;
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}

body {
    background: #111;
    color: white;
    font-family: 'Work Sans', sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.screen-reader-copy {
    position: absolute;
    width: 1px;
    height: 1px;

    padding: 0;
    margin: -1px;

    overflow: hidden;
    clip: rect(0,0,0,0);

    white-space: nowrap;
    border: 0;
}

/* hide cursor on homepage */

.panel-link[data-cursor],
.homepage-panel[data-cursor] {
    cursor: none;
}


.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2147483647;
    pointer-events: none;
    transform: translate(-50%, -50%);
    isolation: isolate;
}

.cursor-text {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: var(--cursor-colour, #ffffff);
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* end hide cursor on homepage */

/* HEADER */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: transparent;
    pointer-events: auto;
}

/* LOGO */
.logo img {
    width: 120px;
    height: auto;
    display: block;
}
/* END LOGO */

/* scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    right: 4rem;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.6;
    text-align: center;
}

.scroll-indicator::after {
    content: '';
    display: block;

    width: 1px;
    height: 40px;

    background: white;

    margin-top: 0.75rem;
    opacity: 0.5;
}
/* end scroll indicator */

.main-nav {
    font-size: 1.8rem;
    font-weight: 800;

    letter-spacing: -0.025em;
    text-transform: uppercase;

    color: #fff;
    text-decoration: none;
}

.main-nav ul {
    display: flex;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    margin: 0;
    padding: 0;
}

.main-nav a {
    display: inline-block;
    text-decoration: none;
    opacity: 0.85;
}

.main-nav li:nth-child(4n + 1) a:hover {
    color: #B8E1D1;
}

.main-nav li:nth-child(4n + 2) a:hover {
    color: #F4D6C3;
}

.main-nav li:nth-child(4n + 3) a:hover {
    color: #D6D0F5;
}

.main-nav li:nth-child(4n + 4) a:hover {
    color: #F5E6A9;
}

.main-nav .menu {
    display: flex;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav .menu li {
    margin: 0;
    padding: 0;
}

.main-nav .menu a {
    display: inline-block;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.main-nav .menu a:hover {
    opacity: 1;
}

.main-nav-menu-button {
    appearance: none;
    -webkit-appearance: none;

    background: none;
    border: 0;
    padding: 0;
    margin: 0;

    color: inherit;
    font: inherit;
    letter-spacing: inherit;
    text-transform: inherit;

    opacity: 0.85;
    cursor: pointer;
}

.main-nav-menu-button:hover {
    opacity: 1;
    color: #B8E1D1;
}

.fullscreen-menu {
    position: fixed;
    inset: 0;
    z-index: 20000;

    display: none;

    background: #111;
    color: #fff;

    padding: 7rem 2rem 2rem;
}

.fullscreen-menu.active {
    display: block;
}

.menu-close {
    appearance: none;
    -webkit-appearance: none;

    position: absolute;
    top: 1.5rem;
    right: 2rem;

    background: none;
    border: 0;
    padding: 0;
    margin: 0;

    color: #fff;
    font-family: inherit;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    text-transform: uppercase;

    cursor: pointer;
}

.menu-close:hover {
    color: #B8E1D1;
}

.fullscreen-menu-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.fullscreen-menu-nav a {
    display: block;

    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.fullscreen-menu-nav li:nth-child(4n + 1) a:hover {
    color: #B8E1D1;
}

.fullscreen-menu-nav li:nth-child(4n + 2) a:hover {
    color: #F4D6C3;
}

.fullscreen-menu-nav li:nth-child(4n + 3) a:hover {
    color: #D6D0F5;
}

.fullscreen-menu-nav li:nth-child(4n + 4) a:hover {
    color: #F5E6A9;
}

/* fullscreen menu */

.fullscreen-menu {
    position: fixed;
    inset: 0;
    z-index: 20000;

    display: none;

    background: #111;
    color: #fff;

    padding: 8rem 2rem 2rem;
}

.fullscreen-menu.active {
    display: block;
}

/* fullscreen menu */

/* PANELS */

.homepage-panel {
    position: relative;
    background: var(--panel-bg-colour);
    overflow: hidden;
}

.panel-link {
    display: block;
    position: relative;
}

.homepage-panel .project-meta,
.homepage-panel h1,
.homepage-panel h2,
.homepage-panel .intro,
.homepage-panel .kicker,
.homepage-panel .studio-statement,
.homepage-panel .contact-panel-inner {
    position: relative;
    z-index: 3;
}

.panel-cursor-hit {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    position: absolute;
    z-index: 4;

    pointer-events: auto;
}

.homepage-panel .panel-copy {
    position: relative;
    z-index: 5;
}

.panel-meta-row {
    position: absolute;
    top: 5rem;
    left: 2rem;
    right: 2rem;
    z-index: 6;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    font-size: 0.85rem;
    opacity: 0.75;
    pointer-events: none;
}

.panel-meta-row span:last-child {
    text-align: right;
    margin-left: auto;
}

.text-light {
    color: #ffffff;
}

.text-dark {
    color: #111111;
}

.work-panel {
    background: var(--panel-bg-colour);
    overflow: hidden;
}

.panel-bg-image,
.panel-bg-video {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.panel-bg-image img,
.panel-bg-video,
.panel-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.panel-meta-row {
    position: absolute;
    top: 5rem;
    left: 2rem;
    right: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 3;
    font-size: 0.85rem;
    opacity: 0.75;
    pointer-events: none;
}

.panel-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0,0,0,var(--panel-overlay-opacity));
    display: none;
    pointer-events: none;
}

.panel-cursor-hit {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.panel-bg-image + .panel-bg-overlay,
.panel-bg-video + .panel-bg-overlay {
    display: block;
}

.work-panel .project-meta,
.work-panel h2 {
    position: relative;
    z-index: 2;
}

.work-pagination {
    padding: 3rem 0 0;
}

.work-pagination .dots + .page-numbers:not(.next) {
    display: none;
}

.work-pagination ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;

    list-style: none;
    margin: 0;
    padding: 0;
}

.work-pagination a,
.work-pagination span {
    display: inline-block;

    border: 1px solid var(--accent-colour);
    background: transparent;

    color: var(--accent-colour);

    padding: 0.6rem 0.85rem;

    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    text-decoration: none;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.work-pagination a:hover {
    background: #fff;
    border-color: #fff;
    color: #111;
}

.work-pagination .current {
    background: #fff;
    border-color: #fff;
    color: #111;
}

.panel {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 6rem 2rem 4rem;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.panel-copy {
    position: static;
}

.hero {
    justify-content: flex-end;
}

/* TEXT */

.kicker {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 0.85rem;
    opacity: 0.7;
}

.layout-contact {
    min-height: 42vh;
    justify-content: center;
    padding: 4rem 2rem;
}

.layout-contact .studio-statement {
    font-size: clamp(2.5rem, 6vw, 7rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.panel h1,
.panel h2 {
    font-family: 'Work Sans', sans-serif;
    font-size: clamp(4.5rem, 10vw, 11rem);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    /* max-width: 10ch; */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.intro {
    max-width: 900px;
    margin-top: 0.5rem;
    font-size: clamp(1.3rem, 3vw, 2.2rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 600;
}

.project-link {
    display: block;
    margin-top: 2rem;
    font-size: 1rem;
    width: fit-content;
    border-bottom: 1px solid currentColor;
    padding-bottom: 0.2rem;
}

/* STATEMENT PANEL */

.layout-statement {
    min-height: 45vh;
    justify-content: center;
}

.layout-statement .studio-statement {
    max-width: 100%;

    font-size: clamp(3rem, 4.5vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

/* CONTACT PANEL */

.layout-contact {
    min-height: 0;
    height: auto;
    padding: 2rem 2rem;
    justify-content: center;
    background: #050505;
}

.contact-panel-link {
    position: relative;
    z-index: 5;
    display: inline-block;
    color: #fff;
    text-decoration: none;
}

.contact-panel-copy {
    display: block;
}

.contact-panel-copy span {
    
    display: none;
}

.contact-panel-copy strong {
    font-size: clamp(2.2rem, 2.4vw, 3rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.02em;
}

.contact-panel-link:hover strong {
    color: #D6D0F5;
}



/* COLOURS */

.black { background: #111111; }
.rust { background: #8a5a44; }
.navy { background: #203245; }
.olive { background: #4f5a3c;  }
.bone { background: #e8dfd2; color: #111111; }
.clay { background: #b57954; }
.plum { background: #49374f; }

/* WORDPRESS ADMIN BAR */



body.admin-bar .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}

/* MOBILE */

@media (max-width: 800px) {
    .site-header {
        padding: 1rem;
        align-items: flex-start;
    }
    .logo img {
    width: 100px;
    height: auto;
    display: block;
}

    .main-nav {
        gap: 0.4rem;
        flex-wrap: wrap;
        justify-content: flex-end;
        font-size: 1.2rem;
    }

    .panel {
        padding: 5rem 1.25rem 2rem;
    }

    .kicker,
    .project-meta {
        top: 5rem;
        left: 1.25rem;
        right: 1.25rem;
    }

    .project-meta {
        flex-direction: column;
        gap: 0.3rem;
    }

    .contact-panel {
        padding: 2rem 1.25rem;
    }
}



/* --------------------  PROJECT PAGE --------------------------- */

.project-page {
    background: #111;
    color: var(--accent-colour);
}

.project-hero {
    min-height: auto;
    display: grid;
    grid-template-columns: 0.75fr 1.45fr;
    gap: 4rem;
    padding: 10rem 2rem 2rem;
    align-items: start;
}

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

.contact-page .project-hero {
    grid-template-columns: 0.8fr 0.8fr;
}

.project-kicker {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-bottom: 2rem;
    /*color: #f5f0e8;*/
}

.project-info h1 {
    font-size: clamp(3rem, 6vw, 6.5rem);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.project-details {
    display: grid;
    gap: 1.2rem;
    font-size: 0.9rem;
    line-height: 1.2;
    /*color: #f5f0e8;*/
}

.project-details strong {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.6;
}

.video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

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

.project-showcase {
    display: grid;
    grid-template-columns: 1.6fr 0.75fr;
    gap: 2rem;
    align-items: start;
    padding: 3rem 2rem 2rem;
    background: #111;
}

.image-viewer-frame {
    width: 100%;
    aspect-ratio: 16 / 7;
    overflow: hidden;
    background: #222;
}

.image-viewer-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: auto;
    cursor: pointer;
    user-select: none;
    -webkit-user-drag: none;
}

.image-switcher {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.image-switcher button {
    background: transparent;
    border: 1px solid currentColor;
    color: inherit;
    padding: 0.45rem 0.7rem;
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    opacity: 0.65;
}

.image-switcher button.active,
.image-switcher button:hover {
    opacity: 1;
    background: var(--accent-colour);
    color: #111;
    border-color: var(--accent-colour);
}

.project-summary {
    color: var(--accent-colour);
    background: #111;
    padding: 0;
    align-self: start;
}

.project-summary p {
    font-size: clamp(1.8rem, 2.2vw, 2.6rem);
    font-weight: 600;
    line-height: 1.16;
    letter-spacing: -0.03em;
    max-width: 17ch;
}


.project-credits {
    padding: 2rem 2rem;
    background: #050505;
} 

.project-credits h2 {
    font-size: clamp(2.8rem, 5vw, 5.5rem);
    margin-bottom: 3rem;
    text-transform: uppercase;
     letter-spacing: -0.03em;
     font-weight: 900;
}

.credits-grid {
    column-count: 7;
    column-gap: 4rem;
}

.credits-grid p {
    break-inside: avoid;
    margin-bottom: 1.3rem;
    font-size: 1.1rem;
    line-height: 1.1;
    color: #f5f0e8;
}

.credits-grid span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.55;
    margin-bottom: 0.25rem;
}

.next-project {
    background: #111;
}

.next-project-link {
    display: block;

    padding: 3rem 2rem;

    color: var(--accent-colour);

    text-transform: uppercase;
    text-decoration: none;

    font-size: clamp(2rem, 3vw, 3.5rem);
    font-weight: 900;

    line-height: 0.92;
    letter-spacing: -0.02em;

    transition: color 0.25s ease;
}

.next-project-link:hover {
    color: var(--next-project-colour);
}

.next-project-link span {
    margin-left: 0.4em;
}

.next-label,
.next-name,
.next-cta {
    font-size: clamp(1.4rem, 3vw, 3rem);
    line-height: 1;
    letter-spacing: -0.03em;
}

.next-label {
    font-weight: 900;
    text-transform: uppercase;
}

.next-name {
    font-weight: 700;
}

.next-cta {
    margin-left: auto;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.65;
}

.next-project-link:hover .next-cta {
    opacity: 1;
}

.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: none;
    align-items: center;
    justify-content: center;

    background: rgba(0,0,0,0.92);
    padding: 3rem;
}

.image-lightbox.active {
    display: flex;
}

.image-lightbox-img {
    max-width: 88vw;
    max-height: 82vh;
    object-fit: contain;
}

.image-lightbox-controls {
    position: absolute;

    left: 50%;
    bottom: 2rem;

    transform: translateX(-50%);

    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.image-lightbox-spacer {
    width: 2rem;
}

.image-lightbox button {
    position: static;

    background: var(--accent-colour);
    border: 0;
    color: #111;

    padding: 0.6rem 0.85rem;

    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    cursor: pointer;
    opacity: 1;
}

.image-lightbox button:hover {
    background: #fff;
    color: #111;
}



/* --------------------------- VIDEO SWITCHER --------------------------- */

.video-switcher {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.video-switcher button {
    background: transparent;
    border: 1px solid currentColor;
    color: inherit;
    padding: 0.45rem 0.7rem;
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    opacity: 0.65;
}

.video-switcher button.active,
.video-switcher button:hover {
    opacity: 1;
    background: var(--accent-colour);
    color: #111;
    border-color: var(--accent-colour);
}

/* --------------------------- END VIDEO SWITCHER --------------------------- */

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;

    clip: rect(0 0 0 0);
    clip-path: inset(50%);

    white-space: nowrap;
}

/* --------------------------- END PROJECT PAGE --------------------------- */

/* --------------------------- WORK (all projects) PAGE --------------------------- */

.work-archive {
    padding: 8rem 2rem 2rem;
    background: #111;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.work-card {
    display: block;
    color: #fff;
    text-decoration: none;
}

.work-thumb {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #111;
}

.work-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.78);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.work-card:hover .work-thumb img {
    transform: scale(1.03);
    filter: brightness(0.55);
}

.work-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.25rem;
    
}

.work-card-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
text-align: right;
    align-items: flex-end;
    margin-bottom: 0.75rem;

    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;

    opacity: 0.45;
}

.work-card h2 {
    font-size: clamp(1.6rem, 3vw, 3.8rem);
    font-weight: 900;
    line-height: 0.82;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: #fff;
}

.work-card:hover h2 {
    color: var(--accent-colour);
}

.work-archive-title {
    margin: 0 0 2rem;

    font-size: clamp(3rem, 9vw, 8rem);
    font-weight: 900;

    line-height: 0.82;
    letter-spacing: -0.05em;
    text-transform: uppercase;

    color: #fff;
}

/* --------------------------- END WORK (all projects) PAGE --------------------------- */

/* --------------------------- ABOUT PAGE --------------------------- */

.about-page {
    background: #111;
    color: #ffffff;
    padding: 8rem 2rem 2rem;
}

.about-section {
    padding: 0 0 3rem;
}

.about-section h1,
.about-section h2 {
    margin-top: 0;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 0.88;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    max-width: 12ch;
}

.about-copy {
    max-width: 800px;
    margin-top: 2rem;

    font-size: clamp(1.2rem, 2.0vw, 2.2rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.about-copy p {
    margin-bottom: 1.4rem;
}

.about-copy strong {
    font-weight: 700;
    text-transform: uppercase;
}

.services-grid {
    list-style: none;
    margin-top: 2.5rem;

    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.services-grid li {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 0.88;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.services-grid li:nth-child(4n + 1) {
    color: #B8E1D1;
}

.services-grid li:nth-child(4n + 2) {
    color: #F4D6C3;
}

.services-grid li:nth-child(4n + 3) {
    color: #D6D0F5;
}

.services-grid li:nth-child(4n + 4) {
    color: #F5E6A9;
}
.services-grid li:hover {
    color: #fff;
}

.about-founders {
    padding-top: 2rem;
}

.founders-image {
    width: 100%;
    max-width: 800px;
    display: block;
}

.founders-links {
    
    max-width: 800px;
    min-width: 450;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;

    margin-top: 2rem;
}

.founders-links a {
    display: block;
    
    font-size: clamp(2.4rem, 6vw, 3rem);
    font-weight: 900;
    line-height: 0.86;
    letter-spacing: -0.04em;
    text-transform: uppercase;

    color: #f5f0e8;
    transition: color 0.2s ease;
}

.founders-links a:first-child {
    text-align: left;
}

.founders-links a:last-child {
    text-align: right;
}

.founders-links a:first-child:hover {
    color: #F4D6C3;
}

.founders-links a:last-child:hover {
    color: #B8E1D1;
}

@media (max-width: 800px) {
    .about-page {
        padding: 8rem 1.25rem 3rem;
    }

    .about-section {
        padding-bottom: 4rem;
    }

    .services-grid,
    .founder-grid {
        grid-template-columns: 1fr;
    }
}

/* --------------------------- END ABOUT PAGE --------------------------- */


/* ---------------- CONTACT PAGE ---------------- */

.contact-page {
    background: #111;
    color: var(--accent-colour);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: start;

    padding: 10rem 4rem 6rem;
}

.contact-main,
.contact-details,
.contact-form-wrap {
    min-width: 0;
}

.contact-main h1 {
    max-width: 8.5ch;
    margin: 0 0 3rem;

    font-size: clamp(4rem, 7.4vw, 8.5rem);
    font-weight: 900;
    line-height: 0.86;
    letter-spacing: -0.035em;
    text-transform: uppercase;
}

/* FORM */

/* Fluent Forms required + errors */

.contact-form-wrap .ff-el-is-required.asterisk-right label::after,
.contact-form-wrap .text-danger {
    color: #D6D0F5 !important;
}

/* Required asterisk spacing */

.contact-form-wrap .ff-el-is-required.asterisk-right label::after {
    margin-left: 0.2rem;
}

/* Validation messages */

.contact-form-wrap .error.text-danger,
.contact-form-wrap .ff-el-is-error .text-danger {
    display: block;

    margin-top: 0.45rem;

    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;

    color: #D6D0F5 !important;
}

/* Error field border */

.contact-form-wrap .ff-el-is-error input,
.contact-form-wrap .ff-el-is-error textarea {
    border-color: #D6D0F5 !important;
}

.contact-form-wrap .ff-message-success {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;

    padding: 0 !important;
    margin-top: 1.5rem;

    color: #D6D0F5 !important;

    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.03em;
}

.contact-form-wrap {
    width: 100%;
    max-width: 820px;
}

.contact-form-wrap .ff-el-group {
    margin-bottom: 1.2rem;
}

.contact-form-wrap label {
    display: block;
    margin-bottom: 0.45rem;

    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-form-wrap input,
.contact-form-wrap textarea {
    width: 100% !important;
    max-width: 100% !important;

    background: transparent !important;
    border: 1px solid var(--accent-colour) !important;
    border-radius: 0 !important;

    padding: 0.85rem 1rem !important;

    color: var(--accent-colour) !important;
    font-family: inherit !important;
    font-size: 1rem !important;
}

.contact-form-wrap textarea {
    min-height: 8rem;
    resize: vertical;
}

.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus {
    outline: none !important;
    border-color: #fff !important;
}

.contact-form-wrap .ff-btn-submit,
.contact-form-wrap button,
.contact-form-wrap input[type="submit"] {
    width: auto !important;

    margin-top: 0.75rem !important;
    padding: 0.75rem 1rem !important;

    background: transparent !important;
    border: 1px solid var(--accent-colour) !important;
    border-radius: 0 !important;

    color: var(--accent-colour) !important;

    font-family: inherit !important;
    font-size: 0.8rem !important;
    font-weight: 900 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;

    cursor: pointer;
}

.contact-form-wrap .ff-btn-submit:hover,
.contact-form-wrap button:hover,
.contact-form-wrap input[type="submit"]:hover {
    background: var(--accent-colour) !important;
    color: #111 !important;
}

/* DETAILS */

.contact-details {
    max-width: 640px;
}

.contact-detail-block {
    margin-bottom: 1.5rem;
}

.contact-detail-block span {
    display: block;
    margin-bottom: 0.55rem;

    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;

    opacity: 0.8;
}

.contact-detail-block p {
    margin: 0;

    font-size: clamp(2rem, 2.1vw, 2.6rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.contact-email-block p {
    font-size: clamp(1.2rem, 1.6vw, 2rem);
}

.contact-detail-block a:hover {
    color: #fff;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 8rem 2rem 4rem;
    }

    .contact-main h1 {
        font-size: clamp(3.6rem, 13vw, 7rem);
        margin-bottom: 2rem;
    }

    .contact-details {
        max-width: none;
    }
}

@media (max-width: 560px) {
    .contact-layout {
        padding: 6.5rem 1rem 1rem;
    }

    .contact-main h1 {
        font-size: clamp(2.8rem, 14vw, 4.2rem);
        max-width: 8ch;
    }

    .contact-form-wrap input,
    .contact-form-wrap textarea {
        padding: 0.75rem 0.85rem !important;
    }

    .contact-detail-block {
        margin-bottom: 1rem;
    }

    .contact-detail-block p {
        font-size: clamp(1.35rem, 7vw, 1rem);
    }
    .contact-email-block p {
    font-size: clamp(1.2rem, 1.6vw, 2rem);
}
}

/* ---------------- END CONTACT PAGE ---------------- */
/* --------------------------- SITE FOOTER --------------------------- */
.site-footer {
    padding: 2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 4rem;

    background: #2a2a2a;
    color: #f5f0e8;

    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.35;

    opacity: 1;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.site-footer p {
    margin: 0;
}

.footer-left {
    text-align: left;
}

.footer-right {
    text-align: right;
}
/* --------------------------- END SITE FOOTER --------------------------- */


/* MOBILE BEHAVIOUR */

@media (hover: none), (pointer: coarse) {
    html {
        scroll-snap-type: y mandatory;
    }

    .home-experience,
    .home-experience * {
        cursor: auto;
    }

    .custom-cursor,
    .panel-link .work-panel::after {
        display: none !important;
    }
}

/* Project pages */

@media (max-width: 1100px) {
    .project-hero {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 8rem 2rem 2rem;
    }

    .project-info h1 {
        font-size: clamp(3rem, 12vw, 6rem);
    }

    .project-video {
        width: 100%;
    }

    .project-showcase {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .project-summary {
        order: 1;
        width: 100%;
    }

    .image-viewer {
        order: 2;
        width: 100%;
    }

    .project-summary p {
        max-width: 100%;
        font-size: clamp(2rem, 9vw, 2rem);
        line-height: 1.05;
    }

    .image-viewer-frame {
        width: 100%;
        aspect-ratio: 16 / 7;
    }

    .project-hero {
    padding: 7rem 1.25rem 2rem;

    .project-showcase {
    padding: 2rem 1.25rem;

    .project-credits {
    padding: 2rem 1.25rem;
    }

    .next-project-link {
        padding: 2rem 1.25rem;
    }
}
}
}

/* Credits */

@media (max-width: 1630px) { .credits-grid { column-count: 6; } }
@media (max-width: 1350px) { .credits-grid { column-count: 5; } }
@media (max-width: 1200px) { .credits-grid { column-count: 4; } }
@media (max-width: 900px) { .credits-grid { column-count: 3; } }
@media (max-width: 800px) { .credits-grid { column-count: 2; } }

/* Work archive */

@media (max-width: 1200px) {
    .work-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .work-card h2 {
        font-size: clamp(2.4rem, 5vw, 5rem);
    }
}

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

    .work-card h2 {
        font-size: clamp(2rem, 8vw, 3.6rem);
        line-height: 0.9;
        letter-spacing: -0.03em;
    }

    .work-pagination {
        display: block !important;
        padding-top: 2rem;
    }

    .work-pagination ul {
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 0.75rem;
    }

    .work-pagination li {
        display: none !important;
    }

    .work-pagination li:has(.prev),
    .work-pagination li:has(.next) {
        display: block !important;
    }

    .work-pagination .prev,
    .work-pagination .next {
        display: inline-block !important;
    }
}

/* Mobile nav */

@media (max-width: 700px) {
    .main-nav .menu li:not(:last-child) {
        display: none;
    }

    .main-nav {
        font-size: 1.25rem;
        line-height: 1;
    }

    .main-nav .menu {
        gap: 0;
    }

    .site-header {
        padding: 1rem 1.25rem;
        align-items: flex-start;
    }

    .logo img {
        width: 105px;
    }
}


    .about-section:last-child {
        padding-bottom: 0;
    }

@media (max-width: 700px) {

    .founders-links {
        gap: 1rem;
        margin-top: 1.25rem;
    }

    .founders-links a {
        font-size: clamp(1.2rem, 5.5vw, 2rem);
        line-height: 0.92;
    }


    .about-page {
        padding: 7rem 1.25rem 2rem;
    }

    .about-section {
        padding-bottom: 2rem;
    }

    .about-section h1,
    .about-section h2 {
        margin-top: 0;
    }

    .about-copy {
        margin-top: 1.5rem;
    }

    .about-copy p {
        margin-bottom: 1.2rem;
    }

/* Homepage mobile */
    .project-showcase {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .project-summary {
        padding-left: 0;
        padding-right: 0;
    }

    .project-credits {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .next-project-link {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .panel {
        padding: 6.5rem 1.25rem 2rem;
    }

    .panel h1,
    .panel h2 {
        font-size: clamp(2.6rem, 11vw, 5rem);
        line-height: 0.88;
        letter-spacing: -0.04em;
    }

    .intro {
        margin-top: 0.75rem;

        font-size: clamp(1rem, 4.8vw, 1.4rem);
        line-height: 1;
    }

    .homepage-panel.layout-hero {
        min-height: 100svh;
    }

    .layout-hero {
        padding-top: 3rem;
    }

    .layout-hero .panel-meta-row {
        top: 2.7rem;
        left: 1.25rem;
        right: 1.25rem;
    }

    .homepage-panel.layout-work,
    .panel-link,
    .panel-link .layout-work {
        min-height: 50svh;
        height: 50svh;
    }

    .homepage-panel.layout-statement,
    .homepage-panel.layout-contact {
        min-height: auto;
        height: auto;
    }

    .layout-work .panel-meta-row {
        top: auto;
        bottom: 0.75rem;
        left: 1.25rem;
        right: 1.25rem;
        justify-content: flex-start;

        font-size: 0.65rem;
        line-height: 1.15;
    }

    .layout-work .panel-meta-row > *:last-child {
        display: none;
    }

    .layout-work .panel-copy {
        margin-bottom: 2.75rem;
    }

    .layout-contact {
        min-height: auto;
        height: auto;
        padding: 1.5rem 1.25rem;
        justify-content: center;
    }

    .contact-layout {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .contact-panel-link {
        width: 100%;
    }

    .contact-panel-copy strong {
        display: block;
        width: 100%;

        font-size: clamp(1.15rem, 5vw, 1.8rem);
        line-height: 1;
        letter-spacing: -0.03em;

        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .work-archive {
        padding: 7rem 1.25rem 2rem;
    }

     .work-card-overlay {
        padding: 1rem;
    }
}

/* Footer mobile */

@media (max-width: 700px) {
    .site-footer {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 1.5rem 1.25rem 2rem;

        font-size: 0.65rem;
    }

    .footer-left,
    .footer-right {
        width: 100%;
    }

    .footer-right {
        text-align: left;
        opacity: 0.7;
    }
}

/* END MOBILE BEHAVIOUR */