/* =========================================================
   GLOBAL
   ========================================================= */

* {
    box-sizing: border-box;
}

:root {
    --ink: #262521;
    --muted: #77736b;
    --paper: #f8f7f3;
    --line: #dedbd3;
    --placeholder: #e6e2d9;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Montserrat, Arial, sans-serif;
    font-weight: 300;
    line-height: 1.7;
}

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


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

.site-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 5vw;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    z-index: 10;
}

.brand {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 19px;
    line-height: .9;
    letter-spacing: .08em;
    text-align: center;
}

.brand span {
    font-size: 13px;
    letter-spacing: .25em;
}

.main-nav {
    display: flex;
    gap: 32px;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: .13em;
}

.main-nav a:hover,
.footer-links a:hover {
    opacity: .55;
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--ink);
    margin: 5px 0;
}


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

.hero {
    min-height: 88vh;
    display: grid;
    grid-template-columns: 58% 42%;
}

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

.hero-slideshow {
    position: relative;
    width: 100%;
    height: 75vh;
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0;
    transition: opacity 1.6s ease-in-out;
}
/* .hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.6s ease-in-out;
} */

.hero-slide.is-active {
    opacity: 1;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8vw;
}

.hero h1,
h2 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 400;
    line-height: .98;
}

.hero h1 {
    font-size: clamp(55px, 7vw, 100px);
    margin: 12px 0 25px;
}

.hero-copy>p:not(.eyebrow) {
    max-width: 430px;
    font-size: 15px;
}

.eyebrow {
    font-size: 10px;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0;
}


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

.section {
    padding: 11vw 7vw;
}


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

.intro {
    text-align: center;
    max-width: 900px;
    margin: auto;
}

.intro h2,
.section-heading h2,
.contact h2 {
    font-size: clamp(48px, 6vw, 78px);
    margin: 15px 0 25px;
}

.intro-text {
    max-width: 650px;
    margin: auto auto 28px;
    color: var(--muted);
}

.text-link {
    display: inline-block;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 3px;
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
}


/* =========================================================
   PLACEHOLDERS
   ========================================================= */

.image-placeholder,
.video-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--placeholder);
    color: #969187;
    letter-spacing: .12em;
    font-size: 12px;
    min-height: 420px;
}

.image-placeholder small,
.video-placeholder small {
    display: block;
    font-size: 9px;
    letter-spacing: .08em;
    margin-top: 8px;
}


/* =========================================================
   CERAMICS GALLERY
   ========================================================= */

.section-heading {
    margin-bottom: 65px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4vw;
    align-items: start;
}

.card-offset {
    margin-top: 9vw;
}


/* Actual ceramic photographs */

.gallery-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.card h3,
.journal-card h3 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 500;
    font-size: 27px;
    margin: 18px 0 2px;
}

.card p {
    color: var(--muted);
    margin: 0;
    font-size: 12px;
}


/* =========================================================
   FEATURE / STUDIO
   ========================================================= */

.feature {
    display: grid;
    grid-template-columns: 55% 45%;
    align-items: center;
    padding-top: 5vw;
}


/* Actual feature photograph */

.feature-image {
    width: 100%;
    height: 650px;
    object-fit: cover;
    display: block;
}

.feature-copy {
    padding: 8vw;
}

.feature-copy h2 {
    font-size: clamp(48px, 6vw, 78px);
    margin: 15px 0 25px;
}

.feature-copy p:not(.eyebrow) {
    color: var(--muted);
    max-width: 440px;
    margin-bottom: 30px;
}


/* =========================================================
   JOURNAL
   ========================================================= */

.journal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4vw;
}


/* Actual journal photographs */

.journal-image {
    width: 100%;
    height: 330px;
    object-fit: cover;
    display: block;
}

.date {
    font-size: 9px;
    letter-spacing: .16em;
    color: var(--muted);
    margin-top: 18px;
}

.journal-card p:not(.date) {
    font-size: 12px;
    color: var(--muted);
}


/* =========================================================
   VIDEO
   ========================================================= */

.video-section {
    padding: 0 7vw 11vw;
}

.video-placeholder {
    min-height: 65vh;
    flex-direction: column;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 42px;
    letter-spacing: .04em;
}
.studio-video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}


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

.contact {
    text-align: center;
    border-top: 1px solid var(--line);
}

.contact p:not(.eyebrow) {
    color: var(--muted);
}

.email-link {
    display: inline-block;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(30px, 4vw, 52px);
    border-bottom: 1px solid var(--ink);
    margin: 12px 0 20px;
}

.location {
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    padding: 60px 7vw 35px;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: end;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.copyright {
    text-align: right;
    color: var(--muted);
    font-size: 9px;
}


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

@media (max-width: 800px) {

    .site-header {
        padding: 22px 6vw;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: var(--paper);
        flex-direction: column;
        gap: 0;
        padding: 15px 6vw 25px;
        border-bottom: 1px solid var(--line);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        padding: 12px 0;
    }


    /* Hero */

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-slideshow {
        height: 62vh;
    }

    .hero-image {
        height: 100%;
        min-height: 0;
    }

    .hero-copy {
        padding: 17vw 8vw;
    }


    /* Gallery */

    .gallery {
        grid-template-columns: 1fr;
    }

    .gallery-image {
        height: 420px;
    }

    .card-offset {
        margin-top: 0;
    }


    /* Feature */

    .feature {
        grid-template-columns: 1fr;
    }

    .feature-image {
        height: 480px;
    }

    .feature-copy {
        padding: 15vw 8vw;
    }


    /* Journal */

    .journal-grid {
        grid-template-columns: 1fr;
    }

    .journal-image {
        height: 330px;
    }


    /* Sections */

    .section {
        padding: 18vw 8vw;
    }


    /* Video */

    .video-section {
        padding: 0 8vw 18vw;
    }

    .video-placeholder {
        min-height: 55vh;
    }

    .studio-video {
        height: 300px;
    }

    /* Footer */

    .site-footer {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-links {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .copyright {
        text-align: left;
    }
}
