:root {
    --linen: #eae0d5;
    --lightlinen: #f5f0e9;
    --black: #0a0908;
    --halblue: #313689;
    --darkblue: #050720;
    --tan: #c6ac8f;
    --white: #ffffff;
    color-scheme: dark;

}

@import url('https://fonts.googleapis.com/css2?family=Neue+Haas+Grotesk+Display:wght@400;500;700&display=swap');


p {
    color: #111;
}

.project-hero-fixed-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10;
    pointer-events: none;
}

.project-hero {
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.project-hero picture,
.project-hero img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    display: block;
}

.project-hero-spacer {
    width: 100vw;
    height: 100vh;
}

.project-info-section {
    width: 100vw;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 40vh;
    padding: 64px 0;
    position: relative;
    z-index: 10;
    margin-top: -5vh;
}

.project-info-section-chaussy {
    width: 100vw;
    background: #fff;
    display: flex;
    align-items: center;
    min-height: 40vh;
    padding: 64px 64px;
    position: relative;
    z-index: 10;
    margin-top: -5vh;
}

.project-info-inner {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0 24px;
}

.project-info-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7em;
    font-size: 1.5rem;
    font-weight: 300;

}

.project-info-text h1 {
    font-size: 2.8em;
    font-family: 'Neue Haas Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    margin: 0 0 0.2em 0;
    color: #111;
}

.project-info-meta {
    display: flex;
    gap: 1.5em;
    font-size: 1.2em;
    color: #444;
    font-weight: 500;
    margin-bottom: 0.2em;
}

.project-info-location {
    font-family: 'Gambetta', serif;
}

.project-info-date {
    font-family: 'Gambetta', serif;
}

.project-info-description {
    font-size: 1.15em;
    color: #222;
    max-width: 700px;
    line-height: 1.6;
}

.project-shape {
    position: absolute;
    top: -107px;
    left: 0;
    width: clamp(300px, 50vw, 640px);
    aspect-ratio: 640 / 107;
    overflow: visible;
    z-index: 30;
}

.project-shape svg {
    width: 100%;
    height: 100%;
    display: block;
    z-index: 30;
    fill: yellowgreen;
}

.project-shape-text {
    dominant-baseline: middle;
}

@media (max-width: 900px) {
    .project-info-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 8vw;
    }

    .project-info-section {
        padding: 32px 0;
    }

    .project-info-text h1 {
        font-size: 1.6em;
    }

    .project-info-meta {
        font-size: 1em;
    }

    .project-info-description {
        font-size: 1em;
    }
}

/* Discover more section (full-width rule with 4rem side padding) */
.discover-more {
    width: 100vw;
    background: var(--white);
    position: relative;
    z-index: 28;
    display: flex;
    justify-content: center;
    padding: 32px 0;
}

.discover-more-inner {
    width: 100%;
    box-sizing: border-box;
    padding: 0 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.discover-rule {
    width: 100%;
    height: 1px;
    background: #000;
}

.discover-more h2 {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #111;
}

/* Lightbox for connect page images */
.image-lightbox-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1200;
    backdrop-filter: blur(6px);
}

.image-lightbox-wrapper {
    max-width: 90vw;
    max-height: 90vh;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}

.image-lightbox-wrapper img {
    max-width: 100%;
    max-height: 90vh;
    display: block;
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

/* Lightbox arrows and close */
.image-lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    z-index: 1210;
    backdrop-filter: none;
}

.image-lightbox-arrow.left {
    left: 18px;
}

.image-lightbox-arrow.right {
    right: 18px;
}

.image-lightbox-arrow svg {
    width: 22px;
    height: 22px;
    stroke: #fff;
}

.image-lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    color: #fff;
    z-index: 1210;
    cursor: pointer;
}

.image-lightbox-close svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
}

.discover-more-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    padding: 16px 0;
}

/* Fixed carousel hero effect */
.carousel-fixed-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    overflow: hidden;
    z-index: 5;
}

.carousel {
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    pointer-events: auto;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1;
}

.carousel-spacer {
    width: 100vw;
    height: 100vh;
}

.section-header {
    width: 100vw;
    background: #fff;
    position: relative;
    z-index: 27;
    overflow: hidden;
}

.section-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 24px;
    min-height: 30vh;
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section-header-inner h1 {
    font-family: 'Gambetta', serif;
    font-size: 8rem;
    font-weight: 400;
    letter-spacing: -7%;
    margin-top: 0;
    color: var(--linen);
}

.line-track.white {
    background-color: #fff;
}

.line-track {
    inset: 0%;
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #000;
}

.line-track.black {
    background-color: #000;
}

.button-footer {
    position: relative;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    font-size: 1.5rem;
    flex-flow: column;
    padding: 0;
    grid-row-gap: .08rem;
    grid-column-gap: .08rem;
    text-shadow: 0 2px 16px #000a;
}

.button-discover {
    position: absolute;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    font-size: 1.5rem;
    font-weight: 200;
    padding-left: 4rem;
    padding-bottom: 4rem;
    bottom: 0;
    left: 0;
    transition: font-weight 0.15s ease;
    text-shadow: ;
}

.button-discover:hover {
    font-weight: 300;
}

.line-wrap {
    position: relative;
    width: 100%;
    height: 1px;
    overflow: hidden;
    margin-top: 0.2rem;
}

/* Directors Section */
.directors-section {
    width: 100vw;
    background: var(--white);
    padding: 6rem 4rem;
    position: relative;
    z-index: 12;
}

.directors-header {
    margin-bottom: 4rem;
}

.directors-header h2 {
    font-family: 'Neue Haas Grotesk Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.directors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 100%;
}

.director-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.director-image {
    width: 100%;
    padding-bottom: 133.33%;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

.director-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.director-info {
    text-align: center;
}

.director-name {
    font-family: 'Neue Haas Grotesk Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 0.5rem 0;
}

.director-discipline {
    font-size: 0.875rem;
    color: var(--halblue);
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.director-qualifications {
    font-size: 0.75rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* Responsive directors grid */
@media (max-width: 1200px) {
    .directors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .directors-section {
        padding: 4rem 2rem;
    }

    .directors-header h2 {
        font-size: 1.75rem;
    }

    .directors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.site-footer {
    width: 100vw;
    background: var(--darkblue);
    color: #fff;
    padding: 4rem;
    position: sticky;
    bottom: 0;
    z-index: 20;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-row-gap: 16px;
    grid-column-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    padding-right: 4rem;
}

.f-top-wrapper {
    grid-template-columns: 1fr 1fr auto;
    grid-column-gap: 4vw;
    grid-template-rows: auto;
    align-items: flex-start;
}

.footer-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.footer-logo-column {
    align-items: flex-start;
}

.footer-links-wrapper {
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 5rem;
    align-items: start;
    grid-template-rows: auto;
}

.footer-slogan-column {
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-nav-column,
.footer-social-column {
    grid-column-gap: 2px;
    grid-row-gap: 2px;
    flex-direction: column;
    grid-template-rows: auto;
    grid-auto-columns: 100%;
    grid-template-columns: 100%;
    place-items: flex-start start;
    display: flex;
}

.footer-logo-container {
    position: relative;
}

.footer-logo {
    width: 4rem;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-slogan {
    font-family: 'Gambetta', serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 200px;
    color: #fff;
    margin: 0;
    letter-spacing: -1%;
}

.footer-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #bbb;
    margin: 0 0 1.5rem 0;
}

.footer-nav,
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-nav a,
.footer-social a {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover,
.footer-social a:hover {
    color: var(--tan);
}

.footer-copyright {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #999;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 4rem;
    width: 100vw;
}



.carousel-caption {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 4rem;
    background: none;
    color: #fff;
    z-index: 5;
    min-width: 220px;
    max-width: 80vw;
    border-top-right-radius: 1.2em;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: 'Neue Haas Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-shadow: 0 2px 16px #000a;
}

.carousel-caption h2 {
    font-size: 3rem;
    font-weight: 500;
    font-family: 'Gambetta', serif;
    margin: 0 0 0.18em 0;
    line-height: 1.1;
    letter-spacing: -2%;
}

.carousel-caption-location {
    font-family: 'Neue Haas Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.85;
    margin-bottom: 0.1em;
}

.carousel-caption-year {
    font-size: 1.1em;
    font-weight: 400;
    opacity: 0.7;
}

/* --- HERO CAROUSEL STYLES --- */
.carousel {
    position: relative;
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    overflow: hidden;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* Carousel horizontal flex and responsive styles */
.carousel-track {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    position: relative;
    transition: transform 0.7s cubic-bezier(.77, 0, .18, 1);
    will-change: transform;
}

.carousel-slide {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 100vw;
    position: relative;
}

.carousel-slide picture,
.carousel-slide img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    display: block;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    font-size: 2.5rem;
    z-index: 2;
    cursor: pointer;
    padding: 0.2em 0.6em;
    border-radius: 50%;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-arrow.left {
    left: 2vw;
}

.carousel-arrow.right {
    right: 2vw;
}

.carousel-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
}

.carousel .hero-text {
    position: absolute;
    left: 50%;
    top: 30%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-shadow: 0 2px 16px #000a;
    z-index: 3;
    text-align: center;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Scroll-down arrow: squared, no animation, double width */
.scroll-down-arrow {
    position: absolute;
    left: 50%;
    bottom: 2vw;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 40px;
    opacity: 0.85;
}

@media (max-width: 900px) {

    .carousel,
    .carousel-track,
    .carousel-slide,
    .carousel-slide picture,
    .carousel-slide img {
        .the-gabba-image {
            width: 100vw;
            height: 60vh;
            object-fit: cover;
            display: block;
            margin: 0;
            padding: 0;
            position: sticky;
            top: 20vh;
            z-index: 5;
            background: #fff;
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.08);
            transition: top 0.2s;
        }

        min-height: 100vw;
        max-height: 100vh;
    }

    .carousel .hero-text {
        top: 24%;
        font-size: 1.2em;
        width: 100vw;
        padding: 0 8vw;
    }

    .scroll-down-arrow {
        width: 112px;
        height: 28px;
        bottom: 4vw;
    }
}

@media (max-width: 900px) {

    .carousel,
    .carousel-track,
    .carousel-slide,
    .carousel-slide picture,
    .carousel-slide img {
        height: 100vh;
        min-height: 100vw;
        max-height: 100vh;
    }

    .carousel .hero-text {
        top: 24%;
        font-size: 1.2em;
    }
}


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

html {
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    background: var(--darkblue);
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #f5f5f5;
    overflow-x: hidden;
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.loading-screen.fade-out {
    animation: fadeOutLoading 1s ease-out forwards;
    pointer-events: none;
}

@keyframes fadeOutLoading {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.loading-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0%);
    animation: saturateFilter 1.8s linear forwards;
}

0% {
    filter: saturate(0%);
}

100% {
    filter: saturate(100%);
}

.loading-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.loading-logo {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-logo img {
    height: 120px;
    width: auto;
    filter: brightness(0) invert(1);
}

.top-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 8vh;
    min-height: 64px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-navbar .nav-shape {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.top-navbar .nav-shape-path {
    fill: var(--lightlinen);
}

.top-navbar .logo-slot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #0b0b0f;
    font-weight: 700;
    letter-spacing: 0.08em;
    /* pointer-events: none; removed to allow link click */
}

.top-navbar .logo-slot a {
    display: inline-block;
    pointer-events: auto;
}

.top-navbar .logo-slot img {
    display: block;
    height: 40px;
    width: auto;
    filter: brightness(0);
}

.menu-button {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
    background: #e7e7e7;
    color: #2c2c2c;
    border: 2px solid #0b0b0f;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-family: 'Neue Haas Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.hero-text {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    color: #ffffff;
    font-family: 'Gestura Headline Regular', serif;
    mix-blend-mode: screen;
}

.hero-text h1 {
    font-size: 7.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
    font-family: 'Gestura Headline Regular', serif;
}

.hero-text p {
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.02em;
    font-family: 'Neue Haas Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.placeholder-section {
    width: 100%;
    padding: 6rem 2rem;
    background: #e7e7e7;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 150vh;
}

.placeholder-content {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.placeholder-text {
    flex: 1;
    background: #1a1a20;
    padding: 2rem;
    border-radius: 1rem;
}

.placeholder-image {
    flex: 0 0 300px;
    height: 450px;
    object-fit: cover;
    border-radius: 1rem;
}

.placeholder-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-family: 'Gestura Headline Regular', serif;
}

.placeholder-section p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #d0d0d0;
}

.header-section {
    width: 100vw;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 64px;
    position: relative;
    z-index: 21;
}

.header-section-inner {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0 24px;
}

.text-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 4rem;
    grid-template-rows: auto;
    grid-row-gap: 4rem;
    grid-auto-columns: 1fr;
    padding-left: 4rem;
    padding-right: 4rem;
    width: 100%;
}

@media (max-width: 900px) {
    .text-img-grid {
        grid-template-columns: 1fr;
        grid-column-gap: 0;
        padding-left: 6vw;
        padding-right: 6vw;
        gap: 1.5rem;
    }

    .text-content-left {
        max-width: none;
        order: 2;
    }

    .image-content-right {
        width: 100%;
        order: 1;
    }

    .image-content-left {
        order: 1;
    }

    .header-image {
        height: auto;
        border-radius: 0.75rem;
    }
}

.text-content-left {
    display: flex;
    border-radius: 0;
    display: block;
    will-change: transform;
    align-items: flex-start;
    gap: 0.7em;
    max-width: 40rem;
}

.header-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
}

.text-size-medium {
    font-size: 1.5rem;
    font-weight: 300;
}

.text-size-large {
    font-size: 2.8rem;
    font-family: 'Gambetta', serif;
    font-weight: 400;
    margin: 0 0 2rem 0;
    line-height: 1;
    color: #111;
    letter-spacing: -2%;
}

.image-content-right {
    position: relative;
}

.image-content-right {
    overflow: hidden;
    border-radius: 1rem;
}

/* Mirror wrapper for left-side images */
.image-content-left {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

.three-image-grid {
    width: 100vw;
    padding: 3rem 0;
    background: #fff;
    position: relative;
    z-index: 21;
    /* appears above fixed hero wrapper */
}

.three-image-grid-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.three-image-item {
    display: block;
    overflow: hidden;
    border-radius: 1rem;
    position: relative;
    height: 32vh;
}

.three-image-item .gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    will-change: transform;
}

@media (max-width: 900px) {
    .three-image-grid-inner {
        grid-template-columns: 1fr;
        padding: 0 6vw;
    }

    .three-image-item {
        height: 40vh;
    }
}

.fullwidth-image-section {
    width: 100vw;
    overflow: hidden;
    display: block;
    position: relative;
    z-index: 11;

}

.fullwidth-image-section .fullwidth-image {
    width: 100%;
    height: 60vh;
    object-fit: cover;
    display: block;
}

.image-content-right .button-discover {
    z-index: 6;
}

.discover-section {
    width: 100vw;
    display: flex;
    padding-top: 4rem;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: #fff;
    z-index: 27;
}

.discover-section-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.discover-heading h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 200;
    letter-spacing: -2%;
    color: #ffffff;
    width: 100%;
    padding: 4rem 4rem 0.5em 0;
    position: absolute;
    bottom: 0;
    padding-left: 4rem;
    padding-bottom: 4rem;
    drop-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.discover-image-wrapper {
    width: 100vw%;
    overflow: hidden;
}

.discover-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

/* Contact Form Section */
.contact-section {
    width: 100vw;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 64px;
    position: relative;
    z-index: 60;
}

.contact-section-inner {
    width: 100%;
    padding-left: 4rem;
    padding-right: 4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-section-inner h2 {
    font-family: 'Gambetta', serif;
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: -2%;
    color: #111;
    width: 100%;
    padding: 4rem 0 0.5em 0;
}

.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2em;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 3em;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    flex: 1;
    min-width: 250px;
}

.form-group.full-width {
    width: 100%;
}

.contact-form label {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: -2%;
    color: #1111116b;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    font-family: 'Neue Haas Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1em;
    padding: 8px 0;
    border: none;
    border-bottom: 2px solid #ddd;
    background: transparent;
    color: #1111116b;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-bottom-color: var(--halblue);
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23111' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 20px;
}

.contact-form textarea {
    resize: vertical;
    min-height: 80px;
}

.submit-button {
    align-self: flex-end;
    font-family: 'Neue Haas Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1em;
    font-weight: 600;
    padding: 16px 40px;
    background: var(--halblue);
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.5em;
}

.submit-button:hover {
    background: var(--darkblue);
}

.submit-button:active {
    transform: scale(0.98);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Form Messages */
.form-message {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 1em;
    font-weight: 500;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media (max-width: 900px) {
    .contact-section {
        padding: 32px 0;
    }

    .contact-section-inner h2 {
        font-size: 1.8em;
    }

    .form-row {
        flex-direction: column;
        gap: 2em;
    }

    .form-group {
        min-width: unset;
        width: 100%;
    }

    .contact-form label {
        font-size: 1.5rem;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 1em;
        padding: 8px 0;
    }
}

/* Menu Styles */
.menu-toggle {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1003;
    background: transparent;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    pointer-events: auto;
    min-width: 40px;
    min-height: 40px;
    visibility: visible !important;
    opacity: 1 !important;
    transition: all 0.3s ease;
}

.menu-line {
    width: 55px;
    height: 3px;
    background: var(--darkblue);
    transition: all 0.3s ease;
    display: block;
    visibility: visible !important;
    mix-blend-mode: multiply;
}

.menu-toggle.active {
    background: rgba(10, 9, 8, 0.1);
    border-radius: 50%;
}

.menu-toggle.active .menu-line {
    background: var(--darkblue);
}

.menu-toggle.active .menu-line:first-child {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active .menu-line:last-child {
    transform: rotate(-45deg) translate(8px, -8px);
}

.menu-toggle.menu-on-light {
    border-color: #0b0b0f;
}

.menu-toggle.menu-on-light .menu-line {
    background: #0b0b0f;
}

.menu-toggle.menu-on-dark {
    border-color: #ffffff;
}

.menu-toggle.menu-on-dark .menu-line {
    background: var(--halblue);
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 998;
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 1001;
    overflow: hidden;
    display: flex;
    transform: translateY(-100%);
}

.menu-panel.active {
    transform: translateY(0);
    transition: transform 0.6s cubic-bezier(.77, 0, .18, 1);
}

.menu-block-left {
    flex: 0 0 40%;
    background: var(--white);
    overflow: hidden;
    position: relative;
}

.menu-block-right {
    flex: 0 0 60%;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.menu-block-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--halblue);
    pointer-events: none;
    z-index: 5;
}

.menu-block-bg-left {
    transform: translateY(-100%);
}

.menu-block-bg-right {
    transform: translateY(100%);
}

.menu-block-content {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 10;
    opacity: 0;
}

.menu-block-content-left {
    width: 100%;
    height: 100%;
}

.menu-block-content-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.menu-block-content-right {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    height: 100%;
}

.menu-header {
    z-index: 10;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-logo {
    height: 40px;
    width: auto;
    filter: brightness(0);
}

.menu-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    position: relative;
    pointer-events: auto;
}

.close-line {
    position: absolute;
    width: 24px;
    height: 3px;
    background: #0b0b0f;
    display: block;
}

.close-line-1 {
    transform: rotate(45deg);
}

.close-line-2 {
    transform: rotate(-45deg);
}

.menu-nav {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
    flex: 1;
    justify-content: center;
}

.menu-link {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    color: #111;
    text-decoration: none;
    letter-spacing: -1%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    width: fit-content;
}

.menu-link>div:first-child {
    transition: color 0.3s ease;
}

.menu-link .line-wrap {
    position: relative;
    width: 100%;
    height: 1px;
    overflow: hidden;
}

.menu-link:hover>div:first-child {
    color: var(--halblue);
}

.projects-page a {
    text-decoration: none;
}

.back-to-pages-wrap {
    z-index: 27;
}

/* Simple layout for the back to projects link */
.back-to-projects {
    position: relative;
    width: 100vw;
    background: #fff;
    display: flex;
    justify-content: left;
    z-index: 27;
    padding-left: 4rem;
    padding-top: 1rem;
}

.back-to-projects a {
    font-family: 'Poppins', sans-serif;
    color: #111;
    text-decoration: none;
    font-size: 1.5rem;
}

.projects-header {
    width: 100vw;
    background: var(--white);
    display: flex;
    padding-top: 4rem;
    padding-left: 4rem;
    position: relative;
    z-index: 10;
}

.projects-header-inner {
    max-width: 600px;
    width: 100%;
    padding-top: 7rem;
    padding-bottom: 5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.projects-header-inner h1 {
    font-family: 'Neue Haas Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -2%;
    color: #111;
    margin: 0;
}

.projects-header-inner p {
    font-family: 'Neue Haas Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin: 0;
    max-width: 800px;
}

.projects-list {
    width: 100vw;
    background: var(--white);
    padding: 0 4rem;
    position: relative;
    z-index: 28;
}

.projects-list-inner {
    max-width: 100%;
    display: flex;
    flex-direction: column;
}

/* Line break between project items */
.line-break {
    box-sizing: border-box;
    display: block;
    align-self: stretch;
    width: 100%;
    height: 1px;
    background: #000000;
    z-index: 28;
}

.line-break-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.project-item {
    display: flex;
    gap: 3rem;
    align-items: stretch;
    padding: 4rem 0;
}

.project-item.no-divider {
    border-bottom: none;
}

.project-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: left;
}

.project-title {
    font-family: 'Gambetta', serif;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: -1%;
    color: #111;
    margin: 0;
}

.project-title a {
    color: #111;
    text-decoration: none;
}

.project-meta {
    font-family: 'Neue Haas Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    color: #888;
    display: flex;
    gap: 2rem;
    margin: 0;
}

.project-location {
    font-weight: 500;
}

.project-year {
    font-weight: 400;
}

.project-image {
    flex: 0 0 50%;
    overflow: hidden;
    border-radius: 8px;
    height: 80vh;
}

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

.project-divider {
    height: 1px;
    background: #ddd;
    margin: 3rem 0 0 0;
}

@media (max-width: 900px) {
    .projects-header {
        padding: 60px 0;
    }

    .projects-header-inner h1 {
        font-size: 2.2rem;
    }

    .section-header-inner h1 {
        font-size: 4rem;
    }

    .projects-header-inner p {
        font-size: 1rem;
    }

    .projects-list {
        padding: 2rem 2rem;
    }

    .project-item {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 0;
    }

    .project-image {
        flex: 0 0 100%;
        height: 250px;
    }

    .project-title {
        font-size: 2rem;
    }

    .project-meta {
        font-size: 0.9rem;
        gap: 1.5rem;
    }

    .project-divider {
        margin: 2rem 0 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 0 2rem;
        min-height: auto;
    }

    .footer-slogan {
        font-size: 1.2rem;
    }

    .footer-nav-column,
    .footer-social-column {
        align-items: flex-start;
    }

    .carousel-caption {
        padding: 1.1em 1.2em 1.1em 1.2em;
        min-width: 120px;
        max-width: 96vw;
        border-top-right-radius: 0.7em;
        font-family: 'Neue Haas Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        text-shadow: 0 2px 16px #000a;
    }

    .carousel-caption h2 {
        font-size: 1.2em;
        font-family: 'Gambetta', serif;
    }

    .carousel-caption-location,
    .carousel-caption-year {
        font-size: 0.95em;
    }

    .menu-toggle {
        right: 1.5rem;
    }

    .menu-block-left {
        display: none;
    }

    .menu-block-right {
        flex: 1;
        padding: 2rem;
        transform: none;
    }

    .menu-nav {
        gap: 2rem;
    }

    .menu-link {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .site-footer {
        padding: 2rem 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1.5rem;
    }

    .footer-slogan-column {
        align-items: flex-start;
    }

    .footer-slogan {
        font-size: 1rem;
        max-width: 100%;
    }

    .footer-logo {
        width: 3rem;
    }

    .projects-header-inner h1 {
        font-size: 1.8rem;
    }

    .projects-header-inner p {
        font-size: 0.95rem;
    }

    .project-item {
        padding: 1.5rem 0;
        gap: 1rem;
    }

    .project-image {
        height: 200px;
    }

    .project-title {
        font-size: 2rem;
    }

    .project-meta {
        font-size: 0.85rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .project-divider {
        margin: 1.5rem 0 0 0;
    }

    .menu-logo {
        height: 32px;
    }

    .menu-block-right {
        padding: 1.5rem;
    }

    .menu-nav {
        gap: 1.5rem;
    }

    .menu-link {
        font-size: 1.8rem;
    }
}

/* Gallery Section - 5 Image Grid */
.gallery-section {
    width: 100vw;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 64px 64px;
    position: relative;
    z-index: 21;
}

.gallery-section-inner {
    width: 100%;
    padding: 0 24px;
}

.gallery-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.gallery-grid-3 .gallery-image {
    width: 100%;
    height: 24vh;
    object-fit: cover;
    display: block;
    border-radius: 1rem;
    will-change: transform;
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

.gallery-grid-3 .gallery-image:hover {
    transform: scale(1.02);
    filter: brightness(0.95);
}

@media (max-width: 1200px) {
    .gallery-grid-3 {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 900px) {
    .gallery-grid-3 {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .gallery-grid-5 .gallery-image {
        height: 25vh;
    }
}

@media (max-width: 600px) {
    .gallery-grid-5 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .gallery-grid-5 .gallery-image {
        height: 20vh;
    }

    .gallery-section {
        padding: 48px 0;
    }
}

/* Project Details Section */
.project-details-section {
    width: 100vw;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 64px 0;
    position: relative;
    z-index: 21;
}

.project-details-inner {
    max-width: 1200px;
    width: 100%;
    padding: 0 24px;
}

.project-details-inner>.text-size-large {
    margin-bottom: 3rem;
}

.project-details-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.project-detail-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.project-detail-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.detail-label {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Poppins', sans-serif;
    min-width: 200px;
    flex-shrink: 0;
    line-height: 1.6;
}

.detail-value {
    font-size: 1.25rem;
    font-weight: 300;
    color: #111;
    line-height: 1.6;
    font-family: 'Neue Haas Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

@media (max-width: 900px) {
    .project-details-list {
        gap: 1rem;
    }

    .project-detail-item {
        gap: 1.5rem;
        padding-bottom: 1rem;
    }

    .project-details-inner {
        padding: 0 6vw;
    }

    .project-details-section {
        padding: 48px 0;
    }

    .detail-label {
        font-size: 0.9rem;
        min-width: 140px;
    }

    .detail-value {
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    .project-detail-item {
        flex-direction: column;
        gap: 0.5rem;
        padding-bottom: 1rem;
    }

    .detail-label {
        min-width: auto;
    }
}

/* Floating Contact Button */
.floating-contact-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    background-color: var(--halblue);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(49, 54, 137, 0.3);
    transition: box-shadow 0.3s ease;
    z-index: 61;
    padding: 0;
}

.floating-contact-btn:hover {
    box-shadow: 0 6px 20px rgba(49, 54, 137, 0.4);
}

.floating-contact-btn:active {
    transform: scale(0.95);
}

.floating-contact-btn svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
}

@media (max-width: 600px) {
    .floating-contact-btn {
        bottom: 24px;
        right: 24px;
        width: 48px;
        height: 48px;
    }

    .floating-contact-btn svg {
        width: 24px;
        height: 24px;
    }
}