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

html {
    scroll-behavior: smooth;
}

body {
    background: #ebe8df;
    color: #171715;
    font-family: "Manrope", Arial, sans-serif;
    overflow-x: hidden;
}

img {
    display: block;
    width: 100%;
}

a {
    color: inherit;
}

button {
    font: inherit;
}

/* HEADER */
.site-header {
    height: 76px;
    padding: 0 4vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #171715;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(235, 232, 223, .94);
    backdrop-filter: blur(16px);
}

.brand {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: .9;
}

.brand-main {
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -.075em;
}

.brand-sub {
    margin-top: 7px;
    font-family: "DM Mono", monospace;
    font-size: 8px;
    letter-spacing: .08em;
}

.desktop-nav {
    display: flex;
    gap: 42px;
}

.desktop-nav a,
.instagram {
    font-family: "DM Mono", monospace;
    font-size: 10px;
    text-decoration: none;
    text-transform: uppercase;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.language {
    border: 0;
    background: transparent;
    cursor: pointer;
    font-family: "DM Mono", monospace;
    font-size: 10px;
    opacity: .35;
}

.language.active {
    opacity: 1;
}

.instagram {
    margin-left: 25px;
}

/* HERO */
.hero {
    padding: 25px 4vw 7vw;
    border-bottom: 1px solid #171715;
}

.hero-meta {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding-bottom: 13px;
    border-bottom: 1px solid #171715;
    font-family: "DM Mono", monospace;
    font-size: 9px;
}

.hero-meta span:nth-child(2) {
    text-align: center;
}

.hero-meta span:last-child {
    text-align: right;
}

.hero-title {
    padding: 7vw 0 5vw;
}

.hero-title h1 {
    font-size: clamp(60px, 14vw, 220px);
    font-weight: 800;
    line-height: .72;
    letter-spacing: -.095em;
    text-align: center;
}

.hero-subtitle {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    padding: 0 1vw;
    font-family: "DM Mono", monospace;
    font-size: 10px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6vw;
    align-items: center;
}

.hero-text {
    padding-top: 0;
}

.eyebrow {
    font-family: "DM Mono", monospace;
    font-size: 9px;
    letter-spacing: .08em;
    margin-bottom: 25px;
}

.hero-text h2 {
    font-size: clamp(45px, 6vw, 95px);
    line-height: .86;
    letter-spacing: -.075em;
    margin-bottom: 32px;
}

.hero-text h2 em {
    font-family: Georgia, serif;
    font-weight: 400;
}

.hero-description {
    max-width: 410px;
    font-size: 14px;
    line-height: 1.75;
}

.round-link {
    width: 125px;
    height: 125px;
    margin-top: 45px;
    border: 1px solid #171715;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    text-decoration: none;
    font-family: "DM Mono", monospace;
    font-size: 8px;
    transition: .35s ease;
}

.round-link b {
    font-size: 18px;
    font-weight: 400;
    margin-top: 7px;
}

.round-link:hover {
    background: #171715;
    color: #ebe8df;
    transform: rotate(-7deg);
}

.hero-image {
    position: relative;
    overflow: hidden;
}

.hero-image img {
    height: min(50vw, 620px);
    object-fit: cover;
    filter: saturate(.65) contrast(1.02);
    transition: transform 1s cubic-bezier(.2,.7,.2,1);
}

.hero-image:hover img {
    transform: scale(1.035);
}

.image-number {
    position: absolute;
    bottom: 15px;
    left: 15px;
    padding: 8px 10px;
    background: #ebe8df;
    font-family: "DM Mono", monospace;
    font-size: 8px;
}

/* TICKER */
.ticker {
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid #171715;
    white-space: nowrap;
}

.ticker-track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: tickerMove 400s linear infinite;
}

.ticker-group {
    display: flex;
    flex-shrink: 0;
}

.ticker-item {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 16px 0;
}

.ticker-item span {
    font-family: "DM Mono", monospace;
    font-size: 11px;
    letter-spacing: .04em;
    margin: 0 28px;
}

.ticker-item i {
    font-style: normal;
    opacity: .45;
    font-size: 10px;
}

@keyframes tickerMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* SECTIONS */
.section {
    position: relative;
    display: block;
    padding: 7vw 4vw;
    border-bottom: 1px solid #171715;
}

.section-label {
    position: absolute;
    left: 4vw;
    top: 7vw;

    display: flex;
    flex-direction: column;
    gap: 8px;

    font-family: "DM Mono", monospace;
    font-size: 9px;
}

.section-label small {
    opacity: .5;
    writing-mode: vertical-rl;
}

.section-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-heading {
    margin: 0 auto 5vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6vw;
    align-items: center;
}

.section-heading h2 {
    font-size: clamp(45px, 6vw, 95px);
    line-height: .86;
    letter-spacing: -.075em;
}

.section-heading h2 em {
    font-family: Georgia, serif;
    font-weight: 400;
}

.section-intro {
    max-width: 400px;
    font-size: 14px;
    line-height: 1.75;
}

/* COFFEE GRID */
.coffee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.coffee-item {
    height: 480px;
    position: relative;
    overflow: hidden;
    background: #ddd;
}

.coffee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.62);
    transition: transform .8s cubic-bezier(.2,.7,.2,1);
}

.coffee-item:hover img {
    transform: scale(1.045);
}

.coffee-caption {
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 15px;
    display: flex;
    justify-content: space-between;
    color: white;
    font-family: "DM Mono", monospace;
    font-size: 9px;
    text-shadow: 0 1px 5px rgba(0,0,0,.7);
}

.methods {
    margin-top: 24px;
    display: flex;
    gap: 35px;
    padding-top: 18px;
    border-top: 1px solid #171715;
    font-family: "DM Mono", monospace;
    font-size: 9px;
}

.methods span {
    margin-right: auto;
    opacity: .5;
}

/* ABOUT */
.about {
    background: #171715;
    color: #ebe8df;
    padding: 9vw 10vw;
    display: grid;
    grid-template-columns: 8vw 1fr;
}

.about-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.about-number {
    font-family: "DM Mono", monospace;
    font-size: 9px;
}

.about-inner .eyebrow {
    color: #aaa;
}

.about-inner h2 {
    font-size: clamp(50px, 7vw, 110px);
    line-height: .85;
    letter-spacing: -.08em;
}

.about-inner h2 em {
    font-family: Georgia, serif;
    font-weight: 400;
}

.about-bottom {
    margin-top: 6vw;
    display: grid;
    grid-template-columns: 1fr 180px;
    gap: 6vw;
    align-items: center;
}

.about-bottom p {
    max-width: 570px;
    font-size: 15px;
    line-height: 1.9;
    color: #d0cdc4;
}

.about-bottom span {
    font-family: "DM Mono", monospace;
    font-size: 8px;
    line-height: 2;
    color: #999;
}

/* IMAGE STORY */
.image-story {
    background: #ebe8df;
    border-bottom: 1px solid #171715;
    padding: 6vw 4vw;
}

.image-story-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    gap: 6vw;
}

.story-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-height: 500px;
    border: 1px solid #171715;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(.65);
}

.story-image > span {
    position: absolute;
    left: 15px;
    bottom: 15px;
    padding: 8px 10px;
    background: #ebe8df;
    font-family: "DM Mono", monospace;
    font-size: 8px;
    z-index: 2;
    border: 1px solid #171715;
}

.story-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-info h3 {
    font-size: clamp(42px, 4.5vw, 75px);
    line-height: .9;
    letter-spacing: -.07em;
    margin-top: 15px;
    margin-bottom: 30px;
}

.story-info h3 em {
    font-family: Georgia, serif;
    font-weight: 400;
}

.roasters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-family: "DM Mono", monospace;
    font-size: 11px;
    margin-bottom: 25px;
}

.roasters span {
    padding: 6px 14px;
    border: 1px solid #171715;
    border-radius: 20px;
}

.small-text {
    font-family: "DM Mono", monospace;
    font-size: 11px;
    line-height: 1.6;
    opacity: .7;
}

/* LOCATIONS */
.location-heading {
    display: block;
    text-align: center;
    margin-bottom: 4vw;
}

.location-heading h2 {
    margin-top: 10px;
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.location-card {
    min-height: 400px;
    border: 1px solid #171715;
    padding: 28px;
    display: flex;
    flex-direction: column;
}

.location-card.dark {
    background: #171715;
    color: #ebe8df;
    border-color: #171715;
}

.location-top {
    display: flex;
    justify-content: space-between;
    font-family: "DM Mono", monospace;
    font-size: 8px;
}

.location-top span:last-child {
    opacity: .5;
}

.location-main {
    margin-top: auto;
    margin-bottom: auto;
    text-align: center;
}

.location-main h3 {
    font-size: clamp(35px, 3.5vw, 55px);
    line-height: .9;
    letter-spacing: -.07em;
    margin-bottom: 20px;
}

.location-main p {
    font-size: 14px;
    line-height: 1.6;
}

.location-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 20px;
    border-top: 1px solid currentColor;
}

.opening-hours {
    display: grid;
    gap: 5px;
}

.location-bottom span {
    font-family: "DM Mono", monospace;
    font-size: 7px;
    opacity: .5;
    margin-top: 5px;
}

.location-bottom strong {
    font-family: "DM Mono", monospace;
    font-size: 9px;
    font-weight: 400;
}

.location-bottom a {
    font-family: "DM Mono", monospace;
    font-size: 8px;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 4px;
}

/* GALLERY */
.gallery {
    padding: 7vw 4vw;
    border-bottom: 1px solid #171715;
}

.gallery-head {
    max-width: 1200px;
    margin: 0 auto 4vw;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.gallery-head h2 {
    font-size: clamp(50px, 6vw, 95px);
    line-height: .86;
    letter-spacing: -.075em;
}

.gallery-head h2 em {
    font-family: Georgia, serif;
    font-weight: 400;
}

.gallery-head > span {
    font-family: "DM Mono", monospace;
    font-size: 8px;
    line-height: 1.7;
    text-align: right;
    opacity: .5;
}

.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-grid figure {
    margin: 0;
    overflow: hidden;
}

.gallery-grid img {
    height: 450px;
    object-fit: cover;
    filter: saturate(.62);
    transition: transform .8s cubic-bezier(.2,.7,.2,1);
}

.gallery-grid figure:hover img {
    transform: scale(1.04);
}

.gallery-grid figcaption {
    padding-top: 10px;
    font-family: "DM Mono", monospace;
    font-size: 8px;
}

/* FOOTER */
.footer {
    background: #171715;
    color: #ebe8df;
    padding: 7vw 4vw 25px;
}

.footer-title {
    font-size: clamp(65px, 13vw, 200px);
    font-weight: 800;
    letter-spacing: -.095em;
    line-height: .75;
    margin-bottom: 6vw;
    text-align: center;
}

.footer-title span {
    font-family: Georgia, serif;
    font-weight: 400;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 5vw;
    border-top: 1px solid #666;
    padding-top: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid small {
    font-family: "DM Mono", monospace;
    font-size: 8px;
    color: #888;
}

.footer-grid p,
.footer-grid a {
    display: block;
    margin-top: 15px;
    font-size: 13px;
    line-height: 1.7;
    color: #ebe8df;
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #666;
    padding-top: 15px;
    margin-top: 6vw;
    font-family: "DM Mono", monospace;
    font-size: 8px;
    color: #888;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* MOBILE */
@media (max-width: 800px) {

    .site-header {
        height: 66px;
        padding: 0 18px;
    }

    .desktop-nav {
        display: none;
    }

    .brand-main {
        font-size: 18px;
    }

    .instagram {
        margin-left: 14px;
    }

    .hero {
        padding: 20px 18px 18vw;
    }

    .hero-meta {
        grid-template-columns: 1fr 1fr;
        font-size: 8px;
    }

    .hero-meta span:nth-child(2) {
        display: none;
    }

    .hero-title {
        padding: 15vw 0 12vw;
    }

    .hero-title h1 {
        font-size: 16vw;
        line-height: .8;
    }

    .hero-subtitle {
        font-size: 8px;
        margin-top: 15px;
    }

    .hero-subtitle span:last-child {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 10vw;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        height: 90vw;
        max-height: 450px;
    }

    .hero-text h2 {
        font-size: 14vw;
    }

    .hero-description {
        font-size: 13px;
    }

    .round-link {
        width: 105px;
        height: 105px;
    }

    /* MOBILE TICKER */
    .ticker-track {
        animation-duration: 350s;
    }

    .ticker-item span {
        margin: 0 20px;
        font-size: 10px;
    }

    /* SECTIONS */
    .section {
        display: block;
        padding: 15vw 18px;
    }

    .section-label {
        position: static;
        flex-direction: row;
        justify-content: space-between;
        margin-bottom: 10vw;
    }

    .section-label small {
        writing-mode: initial;
    }

    .section-content {
        width: 100%;
        max-width: none;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 10vw;
    }

    .section-heading h2 {
        font-size: 14vw;
    }

    .section-intro {
        font-size: 13px;
    }

    .coffee-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .coffee-item {
        height: 80vw;
    }

    .methods {
        flex-wrap: wrap;
        gap: 16px;
    }

    .methods span {
        width: 100%;
        margin: 0;
    }

    /* ABOUT */
    .about {
        padding: 15vw 18px;
        grid-template-columns: 1fr;
    }

    .about-number {
        margin-bottom: 10vw;
    }

    .about-inner h2 {
        font-size: 14vw;
    }

    .about-bottom {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 10vw;
    }

    /* IMAGE STORY */
    .image-story {
        padding: 10vw 18px;
    }

    .image-story-container {
        grid-template-columns: 1fr;
        gap: 8vw;
    }

    .story-image {
        max-height: none;
        height: 80vw;
        border: none;
    }

    .story-info {
        padding: 0;
    }

    .story-info h3 {
        font-size: 13vw;
    }

    /* LOCATIONS */
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .location-card {
        min-height: 380px;
        padding: 22px;
    }

    .location-main h3 {
        font-size: 12vw;
    }

    /* GALLERY */
    .gallery {
        padding: 15vw 18px;
    }

    .gallery-head {
        display: block;
        margin-bottom: 10vw;
    }

    .gallery-head h2 {
        font-size: 14vw;
        margin-top: 15px;
    }

    .gallery-head > span {
        display: none;
    }

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

    .gallery-grid img {
        height: 90vw;
    }

    /* FOOTER */
    .footer {
        padding: 15vw 18px 25px;
    }

    .footer-title {
        font-size: 15vw;
        margin-bottom: 15vw;
    }

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

    .footer-bottom {
        display: block;
        line-height: 2;
    }

    .footer-bottom span {
        display: block;
    }
}