/* ==================================================
   GENERAL
   ================================================== */

:root {
    --cream: #f7f5f0;
    --dark: #34352f;
    --olive: #777a5b;
    --white: #ffffff;
    --light-dark: #d8d6ce;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--cream);
    color: var(--dark);
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
}

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


/* ==================================================
   HEADER
   ================================================== */

.header {
    height: 135px;
    background-color: var(--cream);

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

    padding: 0 5%;

    position: relative;
    z-index: 10;
}


/* Logo */

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.logo-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 6px;
    line-height: 1;
}

.logo-subtitle {
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    letter-spacing: 7px;
    margin-left: 7px;
}


/* Navigation */

.navigation {
    display: flex;
    align-items: center;
    gap: 48px;
}

.navigation a {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;

    transition: color 0.3s ease;
}

.navigation a:hover,
.navigation a.active {
    color: var(--olive);
}


/* ==================================================
   HERO
   ================================================== */

.hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 135px);
    min-height: 600px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;

    display: block;
}


/*
   Very subtle dark overlay.

   This makes the white text readable without
   noticeably changing the colours of the photograph.
*/

.hero-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.25) 0%,
        rgba(0, 0, 0, 0.05) 50%,
        rgba(0, 0, 0, 0) 100%
    );
}


/* Hero text */

.hero-content {
    position: absolute;

    left: 8%;
    top: 50%;

    transform: translateY(-50%);

    color: var(--light-dark);
}

.hero-content p {
    font-family: "Cormorant Garamond", serif;

    font-size: 80px;
    font-weight: 400;
    line-height: 1.4;

    letter-spacing: 0.3px;
}


/* ==================================================
   INTRO
   ================================================== */

.intro {
    min-height: 300px;

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

    text-align: center;

    padding: 80px 30px;
}

.intro p {
    font-family: "Cormorant Garamond", serif;

    font-size: 25px;
    line-height: 1.5;

    color: var(--dark);

    letter-spacing: 0.3px;
}


/* ==================================================
   MOBILE MENU
   ================================================== */

.menu-button {
    display: none;

    background: none;
    border: none;

    cursor: pointer;

    width: 30px;
}

.menu-button span {
    display: block;

    height: 1px;
    width: 100%;

    background-color: var(--dark);

    margin: 6px 0;
}


/* ==================================================
   MOBILE
   ================================================== */

@media (max-width: 800px) {

    .header {
        height: 95px;
        padding: 0 7%;
    }

    .logo-name {
        font-size: 24px;
        letter-spacing: 4px;
    }

    .logo-subtitle {
        font-size: 8px;
        letter-spacing: 5px;
    }

    .navigation {
        display: none;

        position: absolute;

        top: 95px;
        left: 0;

        width: 100%;

        background-color: var(--cream);

        flex-direction: column;

        gap: 25px;

        padding: 30px;
    }

    .navigation.open {
        display: flex;
    }

    .menu-button {
        display: block;
    }

    .hero {
        height: calc(100vh - 95px);
        min-height: 550px;
    }

    .hero-image {
        /*
           Slightly different crop on mobile so that
           the lamb remains visible.
        */
        object-position: 62% center;
    }

    .hero-content {
        left: 8%;
        top: 55%;
    }

    .hero-content h1 {
        font-size: 52px;
    }

    .hero-content p {
        font-size: 22px;
    }

    .intro {
        min-height: 250px;
        padding: 60px 25px;
    }

    .intro p {
        font-size: 21px;
    }
}

/* ==================================================
   COMING SOON
   ================================================== */

.coming-soon {
    min-height: calc(100vh - 135px);

    display: flex;
    flex-direction: column;

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

    text-align: center;

    padding: 60px 30px;
}

.coming-soon-label {
    font-family: "Montserrat", sans-serif;

    font-size: 10px;
    font-weight: 400;

    letter-spacing: 4px;

    color: var(--olive);

    margin-bottom: 30px;
}

.coming-soon h1 {
    font-family: "Cormorant Garamond", serif;

    font-size: clamp(52px, 6vw, 82px);
    font-weight: 400;

    line-height: 0.95;
    letter-spacing: 2px;

    margin-bottom: 35px;
}

.coming-soon-text {
    font-family: "Cormorant Garamond", serif;

    font-size: 21px;
    /*font-style: italic;*/
    line-height: 1.5;

    color: var(--dark);
}


/* ==================================================
   CONTACT
   ================================================== */

.contact {
    min-height: calc(100vh - 135px);

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

    text-align: center;

    padding: 80px 30px;
}

.contact-inner {
    max-width: 650px;
}

.contact-label {
    font-family: "Montserrat", sans-serif;

    font-size: 10px;
    font-weight: 400;

    letter-spacing: 4px;

    color: var(--olive);

    margin-bottom: 30px;
}

.contact h1 {
    font-family: "Cormorant Garamond", serif;

    font-size: clamp(52px, 6vw, 78px);
    font-weight: 400;

    line-height: 0.95;
    letter-spacing: 2px;

    margin-bottom: 35px;
}

.contact-text {
    font-family: "Cormorant Garamond", serif;

    font-size: 23px;
    line-height: 1.5;

    margin-bottom: 40px;
}

.contact-email {
    display: inline-block;

    font-family: "Montserrat", sans-serif;

    font-size: 11px;
    font-weight: 400;

    letter-spacing: 1.5px;

    color: var(--dark);

    border-bottom: 1px solid var(--olive);

    padding-bottom: 8px;

    transition: color 0.3s ease;
}

.contact-email:hover {
    color: var(--olive);
}


@media (max-width: 800px) {

    .coming-soon {
        min-height: calc(100vh - 95px);

        padding: 50px 25px;
    }

    .coming-soon h1 {
        font-size: 52px;
    }

    .coming-soon-text {
        font-size: 18px;
    }

    .contact {
        min-height: calc(100vh - 95px);

        padding: 60px 25px;
    }

    .contact h1 {
        font-size: 52px;
    }

    .contact-text {
        font-size: 20px;
    }
}