/* =========================================
   base
   ========================================= */

@font-face {
    font-family: "Nunito Sans";
    src: url("../fonts/NunitoSans-Variable.ttf") format("truetype");
    font-weight: 200 1000;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Nunito Sans";
    src: url("../fonts/NunitoSans-Italic-Variable.ttf") format("truetype");
    font-weight: 200 1000;
    font-style: italic;
    font-display: swap;
}

:root {
    --color-background: #f7f5f0;
    --color-surface: #f3efe6;
    --color-text: #2e2e2e;
    --color-muted: #6d6a64;
    --color-border: #d9d6cf;
    --color-dark: #2e2e2e;

    --container-width: 1200px;
    --content-padding: 32px;

    --font-main: "Nunito Sans", Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--color-background);
    color: var(--color-text);
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

.container {
    width: min(
        calc(100% - (var(--content-padding) * 2)),
        var(--container-width)
    );
    margin: 0 auto;
}


/* =========================================
   header
   ========================================= */

.site-header {
    position: relative;
    z-index: 10;
    background: var(--color-background);
    border-bottom: 1px solid var(--color-border);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.logo {
    font-family: var(--font-main);
    font-size: 25px;
    font-weight: 700;
    letter-spacing: -0.8px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav a {
    position: relative;
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.15px;
    transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--color-text);
}

.main-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 1px;
    background: var(--color-text);
}


/* =========================================
   mobile menu button
   ========================================= */

.mobile-menu-button {
    display: none;
    width: 40px;
    height: 40px;
    padding: 9px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.mobile-menu-button span {
    display: block;
    width: 100%;
    height: 1px;
    margin: 5px 0;
    background: var(--color-text);
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}


/* =========================================
   mobile navigation
   ========================================= */

.mobile-nav {
    display: none;
}


/* =========================================
   photo containers
   ========================================= */

.photo-container {
    width: 100%;
    aspect-ratio: 6 / 5;
    overflow: hidden;
    background: #dedbd4;
}

.photo-container img {
    transition: transform 0.6s ease;
}

.photo-container:hover img {
    transform: scale(1.03);
}


/* subtle grey treatment */

.photo-container--muted {
    position: relative;
}

.photo-container--muted::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(80, 78, 73, 0.12);
    pointer-events: none;
}

.photo-container--muted img {
    filter: grayscale(15%);
}


/* hero image */

.photo-container--hero {
    aspect-ratio: 2 / 1;
}


/* brew image */

.photo-container--brew {
    aspect-ratio: 4 / 3;
}


/* =========================================
   hero
   ========================================= */

.hero {
    padding: 32px 0 95px;
}

.hero-content {
    max-width: 760px;
    padding-top: 65px;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--color-muted);
    font-weight: 700;
    letter-spacing: 1.8px;
}

.hero h1 {
    margin: 0;
    font-family: var(--font-main);
    font-size: clamp(52px, 7vw, 88px);
    font-weight: 300;
    line-height: 0.98;
    letter-spacing: -3px;
}

.hero-text {
    max-width: 470px;
    margin: 28px 0;
    color: var(--color-muted);
    font-size: 16px;
    line-height: 1.7;
}


/* =========================================
   buttons
   ========================================= */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    background: var(--color-text);
    color: white;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.4px;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.button:hover {
    background: #444;
    transform: translateY(-1px);
}


/* =========================================
   sections
   ========================================= */

.section {
    padding: 100px 0;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 24px;
    color: var(--color-muted);
    font-weight: 700;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.section-label span {
    color: var(--color-text);
}

h2 {
    margin: 0;
    font-family: var(--font-main);
    font-size: clamp(42px, 5vw, 60px);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -2px;
}

h3 {
    margin: 0;
    font-family: var(--font-main);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.25;
}


/* =========================================
   introduction
   ========================================= */

.intro {
    border-top: 1px solid var(--color-border);
}

.intro-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 75px;
}

.intro-content {
    max-width: 700px;
}

.intro-content p {
    max-width: 650px;
    margin: 28px 0 0;
    color: var(--color-muted);
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   highlights
   ========================================= */

.highlights {
    background: var(--color-surface);
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 60px;
}

.section-heading .section-label {
    margin-bottom: 0;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.highlight-card {
    min-width: 0;
}

.highlight-content {
    padding-top: 22px;
}

.highlight-content p {
    max-width: 320px;
    margin: 12px 0 0;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.75;
}


/* =========================================
   brew guides
   ========================================= */

.brew-section {
    border-bottom: 1px solid var(--color-border);
}

.brew-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 80px;
}

.brew-content {
    max-width: 500px;
}

.brew-content p {
    margin: 28px 0;
    color: var(--color-muted);
    font-size: 15px;
    line-height: 1.8;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--color-text);
    font-size: 13px;
    font-weight: 600;
}

.text-link span {
    font-size: 17px;
    transition: transform 0.2s ease;
}

.text-link:hover span {
    transform: translateX(4px);
}


/* =========================================
   locations
   ========================================= */

.location {
    background: var(--color-surface);
}


/* controls where #visit-us lands after scrolling */

#visit-us {
    scroll-margin-top: 20px;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.location-card {
    padding: 32px;
    background: var(--color-background);
    border: 1px solid var(--color-border);
}

.location-card-header {
    display: flex;
    align-items: baseline;
    margin-bottom: 24px;
}

.location-card h3 {
    margin: 0;
}

.location-card address {
    color: var(--color-muted);
    font-size: 14px;
    font-style: normal;
    line-height: 1.8;
}


/* =========================================
   google map
   ========================================= */

.map-container {
    width: 100%;
    overflow: hidden;
    background: #dedbd4;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
}


/* =========================================
   contact details
   ========================================= */

.location-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 32px;
    padding-top: 32px;
}

.location-contact a {
    padding-bottom: 4px;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
    font-size: 13px;
    font-weight: 500;
}

.location-contact a:hover {
    border-color: var(--color-text);
}


/* =========================================
   footer
   ========================================= */

.site-footer {
    padding: 55px 0 28px;
    background: var(--color-dark);
    color: white;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
}

.footer-brand .logo {
    display: inline-block;
}

.footer-brand p {
    margin: 10px 0 0;
    color: #aaa;
    font-size: 13px;
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 26px;
}

.footer-links a {
    color: #ccc;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}


/* =========================================
   footer opening hours
   ========================================= */

.footer-hours {
    display: flex;
    gap: 70px;
    padding-top: 10px;
}

.footer-hours-location {
    min-width: 180px;
}

.footer-hours-location h4 {
    margin: 0 0 14px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.footer-hours-location p {
    margin: 0 0 14px;
    color: #aaa;
    font-size: 13px;
    line-height: 1.7;
}

.footer-bottom {
    grid-column: 1 / -1;
    padding-top: 24px;
    border-top: 1px solid #444;
    color: #888;
}


/* =========================================
   menu page
   ========================================= */

.menu-hero {
    padding: 90px 0 80px;
    border-bottom: 1px solid var(--color-border);
}

.menu-hero-content {
    max-width: 760px;
}

.menu-hero h1 {
    margin: 0;
    font-size: clamp(52px, 7vw, 88px);
    font-weight: 300;
    line-height: 0.98;
    letter-spacing: -3px;
}

.menu-hero-text {
    max-width: 520px;
    margin: 28px 0 0;
    color: var(--color-muted);
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   signature drinks
   ========================================= */

.signature-drinks {
    padding: 100px 0;
    background: var(--color-surface);
}

.signature-drinks-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 55px;
}

.signature-drinks-heading .section-label {
    margin-bottom: 0;
}

.signature-drinks-heading h2 {
    max-width: 600px;
}


/* drink grid */

.drink-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 24px;
}


/* drink card */

.drink-card {
    min-width: 0;
}

.drink-card .photo-container {
    aspect-ratio: 6 / 6;
}

.drink-card-content {
    padding-top: 18px;
}

.drink-card-content h3 {
    margin: 0;
    font-size: 23px;
    font-weight: 600;
    line-height: 1.25;
}

.drink-card-content p {
    max-width: 420px;
    margin: 8px 0 0;
    color: var(--color-muted);
    font-size: 13px;
    line-height: 1.7;
}

.drink-card-content .drink-profile {
    margin-top: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2px;
}


/* =========================================
   featured drink
   ========================================= */

.drink-card--featured {
    grid-column: span 2;
}

.drink-card--featured .photo-container {
    aspect-ratio: 2 / 1;
}

.drink-card--featured .drink-card-content {
    max-width: 650px;
}

.drink-card--featured .drink-card-content h3 {
    font-size: 28px;
}


/* =========================================
   subtle drink image treatment
   ========================================= */

.drink-card--muted .photo-container {
    position: relative;
}

.drink-card--muted .photo-container::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(80, 78, 73, 0.10);
    pointer-events: none;
}

.drink-card--muted .photo-container img {
    filter: grayscale(12%);
}


/* =========================================
   full menu button
   ========================================= */

.signature-drinks-menu-link {
    margin-top: 60px;
    text-align: center;
}


/* =========================================
   menu introduction
   ========================================= */

.menu-intro {
    padding: 100px 0;
    border-bottom: 1px solid var(--color-border);
}

.menu-intro-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 75px;
    align-items: center;
}

.menu-intro-content {
    max-width: 700px;
}

.menu-intro-content p {
    max-width: 650px;
    margin: 28px 0 0;
    color: var(--color-muted);
    font-size: 16px;
    line-height: 1.8;
}

.menu-intro-content .button {
    margin-top: 36px;
}


/* =========================================
   tablet
   ========================================= */

@media (max-width: 900px) {

    /* header */

    .header-inner {
        gap: 20px;
    }

    .main-nav {
        gap: 20px;
    }


    /* introduction */

    .intro-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }


    /* highlights */

    .highlight-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .highlight-card .photo-container {
        aspect-ratio: 4 / 3;
    }


    /* brew */

    .brew-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .brew-content {
        max-width: 650px;
    }


    /* locations */

    .location-grid {
        grid-template-columns: 1fr;
    }


    /* footer */

    .footer-hours {
        gap: 45px;
    }


    /* =====================================
       menu page
       ===================================== */

    .menu-hero {
        padding: 75px 0 65px;
    }

    .signature-drinks {
        padding: 80px 0;
    }

    .signature-drinks-heading {
        display: block;
        margin-bottom: 45px;
    }

    .signature-drinks-heading h2 {
        margin-top: 18px;
    }

    .drink-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .drink-card--featured {
        grid-column: auto;
    }

    .drink-card--featured .photo-container {
        aspect-ratio: 4 / 3;
    }

    .menu-intro-inner {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}


/* =========================================
   mobile
   ========================================= */

@media (max-width: 640px) {

    :root {
        --content-padding: 20px;
    }


    /* =====================================
       header
       ===================================== */

    .header-inner {
        min-height: 64px;
    }

    .logo {
        font-size: 22px;
    }


    /* hide desktop navigation */

    .main-nav {
        display: none;
    }


    /* show mobile menu button */

    .mobile-menu-button {
        display: block;
    }


    /* mobile navigation */

    .mobile-nav {
        display: flex;
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        background: var(--color-background);
        border-top: 1px solid transparent;
        transition:
            max-height 0.3s ease,
            border-color 0.3s ease;
    }

    .mobile-nav.is-open {
        max-height: 300px;
        border-top-color: var(--color-border);
    }

    .mobile-nav a {
        display: block;
        padding: 15px var(--content-padding);
        border-bottom: 1px solid var(--color-border);
        color: var(--color-muted);
        font-size: 14px;
        font-weight: 500;
    }

    .mobile-nav a:hover,
    .mobile-nav a.active {
        color: var(--color-text);
    }


    /* hamburger animation */

    .mobile-menu-button.is-open span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .mobile-menu-button.is-open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-button.is-open span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }


    /* =====================================
       hero
       ===================================== */

    .hero {
        padding-top: 20px;
        padding-bottom: 65px;
    }

    .photo-container--hero {
        aspect-ratio: 4 / 3;
    }

    .hero-content {
        padding-top: 42px;
    }

    .hero h1 {
        font-size: clamp(46px, 14vw, 66px);
        letter-spacing: -2.5px;
    }

    .hero-text {
        font-size: 15px;
    }


    /* =====================================
       sections
       ===================================== */

    .section {
        padding: 70px 0;
    }

    h2 {
        font-size: 40px;
        letter-spacing: -1.5px;
    }

    .section-heading {
        display: block;
        margin-bottom: 45px;
    }

    .section-heading h2 {
        margin-top: 18px;
    }


    /* =====================================
       introduction
       ===================================== */

    .intro-content p {
        font-size: 15px;
    }


    /* =====================================
       highlights
       ===================================== */

    .highlight-grid {
        gap: 50px;
    }


    /* =====================================
       brew
       ===================================== */

    .brew-inner {
        gap: 35px;
    }

    .photo-container--brew {
        aspect-ratio: 4 / 3;
    }


    /* =====================================
       locations
       ===================================== */

    #visit-us {
        scroll-margin-top: 10px;
    }

    .location-card {
        padding: 26px;
    }

    .map-container iframe {
        height: 340px;
    }

    .location-contact {
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
        gap: 16px;
    }


    /* =====================================
       footer
       ===================================== */

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-links {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 14px 22px;
    }

    .footer-hours {
        flex-direction: column;
        gap: 28px;
        padding-top: 0;
    }

    .footer-hours-location {
        min-width: 0;
    }


    /* =====================================
       menu page
       ===================================== */

    .menu-hero {
        padding: 60px 0 55px;
    }

    .menu-hero h1 {
        font-size: clamp(46px, 14vw, 66px);
        letter-spacing: -2.5px;
    }

    .menu-hero-text {
        font-size: 15px;
    }

    .signature-drinks {
        padding: 70px 0;
    }

    .signature-drinks-heading {
        margin-bottom: 40px;
    }

    .drink-grid {
        gap: 45px;
    }

    .drink-card .photo-container,
    .drink-card--featured .photo-container {
        aspect-ratio: 4 / 3;
    }

    .drink-card-content {
        padding-top: 16px;
    }

    .drink-card-content h3 {
        font-size: 21px;
    }

    .drink-card--featured .drink-card-content h3 {
        font-size: 23px;
    }

    .drink-card-content p {
        font-size: 13px;
    }

    .drink-card-content .drink-profile {
        font-size: 11px;
    }

    .signature-drinks-menu-link {
        margin-top: 45px;
    }

    .menu-intro {
        padding: 70px 0;
    }

    .menu-intro-inner {
        gap: 35px;
    }

    .menu-intro-content p {
        font-size: 14px;
    }

    .menu-intro-content .button {
        margin-top: 30px;
    }
}


/* =========================================
   full menu button
   ========================================= */

.signature-drinks-menu-link {
    margin-top: 60px;
    text-align: center;
}

@media (max-width: 640px) {

    .signature-drinks-menu-link {
        margin-top: 45px;
    }
}

.highlight-card {
    display: block;
    min-width: 0;
    color: inherit;
    text-decoration: none;
}

.highlight-card .highlight-content h3 {
    transition: color 0.2s ease;
}

.highlight-card:hover .highlight-content h3 {
    color: var(--color-muted);
}

/* =========================================
brew guides
========================================= */

.brew-guides {
padding: 100px 0;
background: var(--color-surface);
}

.brew-guides-heading {
display: flex;
align-items: flex-end;
justify-content: space-between;
margin-bottom: 60px;
}

.brew-guides-heading .section-label {
margin-bottom: 0;
}

.brew-guides-heading h2 {
max-width: 600px;
}

.brew-guide-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 70px 24px;
}

.brew-guide-card {
min-width: 0;
}

.brew-guide-card-heading {
margin-bottom: 28px;
}

.brew-guide-profile {
margin: 0 0 12px;
color: var(--color-muted);
font-size: 12px;
font-weight: 600;
letter-spacing: 0.4px;
}

.brew-guide-card-heading h3 {
margin: 0;
font-size: 28px;
font-weight: 500;
}

.brew-guide-card-heading > p:last-child {
max-width: 500px;
margin: 12px 0 0;
color: var(--color-muted);
font-size: 14px;
line-height: 1.75;
}

.brew-guide-options {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 16px;
}

.brew-guide-option {
min-width: 0;
}
/* =========================================
   brew guide video
   ========================================= */

.brew-video {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #dedbd4;
    cursor: pointer;
}

.brew-guide-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.brew-video:hover .brew-guide-video {
    transform: scale(1.02);
}

/* fullscreen video */

.brew-guide-video:fullscreen {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.brew-guide-video:-webkit-full-screen {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.brew-guide-option-content {
padding-top: 15px;
}

.brew-guide-option-content span {
display: block;
font-size: 15px;
font-weight: 600;
line-height: 1.3;
}

.brew-guide-option-content p {
margin: 7px 0 0;
color: var(--color-muted);
font-size: 12px;
line-height: 1.7;
}

/* =========================================
brew guides responsive
========================================= */

@media (max-width: 900px) {


.brew-guides {
    padding: 80px 0;
}

.brew-guides-heading {
    display: block;
    margin-bottom: 45px;
}

.brew-guides-heading h2 {
    margin-top: 18px;
}

.brew-guide-grid {
    grid-template-columns: 1fr;
    gap: 65px;
}


}

@media (max-width: 640px) {


.brew-guides {
    padding: 70px 0;
}

.brew-guides-heading {
    margin-bottom: 40px;
}

.brew-guide-grid {
    gap: 55px;
}

.brew-guide-card-heading {
    margin-bottom: 24px;
}

.brew-guide-card-heading h3 {
    font-size: 24px;
}

.brew-guide-profile {
    font-size: 11px;
}

.brew-guide-card-heading > p:last-child {
    font-size: 13px;
}

.brew-guide-options {
    gap: 12px;
}

.brew-video {
    aspect-ratio: 4 / 5;
}

.brew-guide-option-content {
    padding-top: 12px;
}

.brew-guide-option-content span {
    font-size: 14px;
}

.brew-guide-option-content p {
    font-size: 11px;
}

}
