@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    --primary-color: #948d6b;
    --primary-color-washed: #f5f3ec;
    --primary-color-hover: #8f896c;
    --primary-color-contrast: #fff;
    --border-divider-color: #e7e4dd;
    font-family: "Jost", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
}

.site-footer {
    background: #050505;
    color: #ffffff;
}


/* =========================================
   CONTACT
   ========================================= */

.footer-contact {
    padding: 75px 0 80px;
}

.footer-contact-inner {
    width: min(1240px, calc(100% - 80px));
    margin: 0 auto;

    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 100px;
}


/* Left */

.footer-intro {
    padding-right: 60px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    color: var(--primary-color);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.footer-label-line {
    display: block;
    width: 20px;
    height: 1px;
    background: var(--primary-color);
}

.footer-intro h2 {
    margin: 0 0 28px;
    font-family: "Playfair Display", serif;
    font-size: clamp(48px, 5vw, 68px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -2px;
}

.footer-intro p {
    max-width: 250px;

    margin: 0;

    color: #777777;

    
    font-size: 13px;
    line-height: 1.7;
}

.language-switcher {
    text-align: right;
}


.language-switcher a {
     color: white;
     text-decoration: none;
}

/* =========================================
   DETAILS
   ========================================= */

.footer-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 100px;
    row-gap: 65px;
}

.footer-detail {
    min-width: 0;
}

.footer-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 14px;
    height: 14px;

    color: var(--primary-color);

    font-size: 14px;
    letter-spacing: 0;
}

.footer-detail-content {
    display: flex;
    flex-direction: column;
    gap: 8px;

    
    font-size: 13px;
    line-height: 1.4;
}

.footer-detail-content p {
    margin: 0;
    color: #888888;
}

.footer-detail-content a {
    color: #888888;
    text-decoration: none;

    transition: color 0.2s ease;
}

.footer-detail-content a:hover {
    color: #ffffff;
}


/* =========================================
   IMAGE
   ========================================= */

.footer-image {
    width: min(1240px, calc(100% - 80px));
    margin: 0 auto 120px;
}

.footer-image-placeholder {
    width: 100%;
    aspect-ratio: 3.8 / 1;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #222222;

    color: #666666;

    
    font-size: 11px;
    letter-spacing: 3px;
}


/* When you have the actual image:

.footer-image img {
    display: block;
    width: 100%;
    aspect-ratio: 3.8 / 1;
    object-fit: cover;
}

*/


/* =========================================
   BOTTOM BAR
   ========================================= */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
    width: min(1240px, calc(100% - 80px));
    min-height: 90px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
}

.footer-logo {
    color: #ffffff;
    font-family: "Playfair Display", serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 4px;
}

.footer-copyright {
    color: #555555;

    
    font-size: 11px;

    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: flex-end;
    gap: 35px;
}

.footer-nav a {
    color: var(--primary-color);

    
    font-size: 9px;
    letter-spacing: 3px;

    text-decoration: none;

    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: #ffffff;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 800px) {

    .footer-contact {
        padding: 80px 0 50px;
    }

    .footer-contact-inner {
        width: min(100% - 40px, 600px);

        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-intro {
        padding-right: 0;
        padding-bottom: 50px;

        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .footer-details {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .footer-image {
        width: calc(100% - 40px);
        margin-bottom: 70px;
    }

    .footer-image-placeholder {
        aspect-ratio: 16 / 7;
    }

    .footer-bottom-inner {
        width: calc(100% - 40px);

        padding: 30px 0;

        grid-template-columns: 1fr;
        gap: 25px;

        text-align: center;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-copyright {
        order: 3;
    }

    .footer-nav {
        justify-content: center;
        gap: 20px;
    }
}