/* =========================================================
   JAMBO COFFEE
   Global Design System
   ========================================================= */

:root {
    --espresso: #211a17;
    --coffee: #6b4532;
    --cream: #f4efe6;
    --soft-white: #fcfaf6;
    --terracotta: #b65c3a;
    --gold: #c49a5a;
    --charcoal: #292725;

    --font-display: "Fraunces", Georgia, serif;
    --font-body: "Manrope", Arial, sans-serif;

    --max-width: 1380px;
}

/* RESET */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--soft-white);
    color: var(--charcoal);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

/* TYPOGRAPHY */

h1,
h2,
h3,
h4 {
    margin-top: 0;
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.05;
}

/* HEADER */

.site-header {
    width: 100%;
    background: var(--espresso);
    color: var(--cream);
}

.nav-container {
    width: min(calc(100% - 80px), var(--max-width));
    height: 96px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* TEMPORARY TEXT LOGO */

.brand {
    display: inline-flex;
    flex-direction: column;

    font-family: var(--font-display);
    font-size: 27px;
    font-weight: 600;
    line-height: 0.85;
    letter-spacing: 0.02em;
}

.brand span {
    margin-top: 8px;

    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.42em;
}

/* DESKTOP NAVIGATION */

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.main-nav a {
    position: relative;

    padding: 8px 0;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;

    opacity: 0.78;

    transition:
        opacity 0.25s ease,
        color 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
    opacity: 1;
}

.main-nav a.active::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 1px;

    background: var(--gold);
}

/* FIND US BUTTON */

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 118px;
    min-height: 46px;
    padding: 12px 22px;

    border: 1px solid rgba(244, 239, 230, 0.45);
    border-radius: 999px;

    font-size: 13px;
    font-weight: 700;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.nav-cta:hover {
    background: var(--cream);
    border-color: var(--cream);
    color: var(--espresso);
}

/* TEMPORARY MOBILE BEHAVIOUR */

@media (max-width: 950px) {
    .nav-container {
        width: min(calc(100% - 40px), var(--max-width));
        height: 82px;
    }

    .main-nav {
        display: none;
    }
}

@media (max-width: 520px) {
    .nav-container {
        width: calc(100% - 32px);
    }

    .nav-cta {
        min-width: auto;
        min-height: 42px;
        padding: 10px 18px;
    }
}
/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;
    min-height: calc(100vh - 96px);
    overflow: hidden;

    display: flex;
    align-items: center;

    background: var(--espresso);
    color: var(--cream);
}

.hero-video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

/* Dark cinematic treatment */

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(20, 14, 11, 0.88) 0%,
            rgba(20, 14, 11, 0.64) 48%,
            rgba(20, 14, 11, 0.28) 100%
        ),
        linear-gradient(
            0deg,
            rgba(20, 14, 11, 0.45) 0%,
            transparent 45%
        );
}

/* HERO CONTENT */

.hero-content {
    position: relative;
    z-index: 2;

    width: min(calc(100% - 80px), var(--max-width));
    margin: 0 auto;

    padding: 90px 0 130px;
}

.hero-eyebrow,
.section-eyebrow {
    margin: 0 0 24px;

    color: var(--gold);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.hero-title {
    max-width: 1000px;
    margin: 0;

    font-size: clamp(58px, 7vw, 108px);
    font-weight: 400;
    letter-spacing: -0.035em;
}

.hero-title span {
    display: block;
    color: var(--cream);
    font-style: normal;
}

.hero-description {
    max-width: 600px;
    margin: 32px 0 0;

    color: rgba(244, 239, 230, 0.82);

    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.75;
}

/* HERO BUTTONS */

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 38px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 13px 26px;

    border: 1px solid transparent;
    border-radius: 999px;

    font-size: 13px;
    font-weight: 700;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--cream);
    color: var(--espresso);
}

.button-primary:hover {
    background: var(--soft-white);
}

.button-secondary {
    border-color: rgba(244, 239, 230, 0.55);
    color: var(--cream);
}

.button-secondary:hover {
    background: rgba(244, 239, 230, 0.1);
    border-color: var(--cream);
}

/* BOTTOM HERO DETAILS */

.hero-footer {
    position: absolute;
    z-index: 2;

    right: 40px;
    bottom: 28px;
    left: 40px;

    width: min(calc(100% - 80px), var(--max-width));
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: center;

    color: rgba(244, 239, 230, 0.65);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-footer a {
    display: flex;
    align-items: center;
    gap: 12px;

    transition: color 0.25s ease;
}

.hero-footer a:hover {
    color: var(--cream);
}

/* =========================================================
   HOME INTRO
   ========================================================= */

.home-intro {
    background: var(--cream);
    padding: 110px 64px 70px;
}

.home-intro-inner {
    width: min(100%, 1240px);
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
    column-gap: 100px;
    align-items: end;
}

.home-intro .section-eyebrow {
    grid-column: 1 / -1;
}

.home-intro h2 {
    margin: 0;

    color: var(--espresso);

    font-size: clamp(46px, 5vw, 72px);
    font-weight: 400;
    letter-spacing: -0.035em;
}

.home-intro h2 em {
    color: var(--terracotta);
    font-weight: 400;
}

.home-intro-copy {
    max-width: 440px;
    margin: 0 0 10px;

    color: rgba(41, 39, 37, 0.75);

    font-size: 17px;
    line-height: 1.85;
}

/* =========================================================
   HERO RESPONSIVE
   ========================================================= */

@media (max-width: 950px) {

    .hero {
        min-height: calc(100svh - 82px);
    }

    .hero-content {
        width: min(calc(100% - 40px), var(--max-width));
        padding: 80px 0 120px;
    }

    .hero-title {
        max-width: 800px;
    }

    .hero-footer {
        right: 20px;
        left: 20px;

        width: calc(100% - 40px);
    }

    .home-intro {
        padding: 100px 24px;
    }

    .home-intro-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .home-intro-copy {
        max-width: 600px;
    }
}

@media (max-width: 520px) {

    .hero-content {
        width: calc(100% - 32px);
        padding: 65px 0 115px;
    }

    .hero-eyebrow {
        max-width: 280px;

        font-size: 10px;
        line-height: 1.6;
    }

    .hero-title {
        font-size: clamp(48px, 14vw, 68px);
    }

    .hero-description {
        margin-top: 24px;

        font-size: 15px;
        line-height: 1.7;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;

        width: 100%;
        max-width: 300px;
    }

    .button {
        width: 100%;
    }

    .hero-footer {
        right: 16px;
        bottom: 20px;
        left: 16px;

        width: calc(100% - 32px);
    }

    .hero-footer > span {
        display: none;
    }

    .hero-footer a {
        margin-left: auto;
    }

    .home-intro {
        padding: 82px 20px;
    }

    .home-intro h2 {
        font-size: clamp(43px, 13vw, 62px);
    }

    .home-intro-copy {
        font-size: 16px;
    }
}

/* Respect reduced-motion preferences */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .button {
        transition: none;
    }
}
/* =========================================================
   COFFEE / FOOD / BITES
   ========================================================= */

.experience-section {
    padding: 0 64px 120px;
    background: var(--cream);
}
.experience-grid {
    width: min(100%, 1240px);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    grid-template-rows: 270px 270px;

    column-gap: 18px;
    row-gap: 18px;
}

.experience-coffee {
    grid-column: 1;
    grid-row: 1 / 3;
}

.experience-food {
    grid-column: 2;
    grid-row: 1;
}

.experience-bites {
    grid-column: 2;
    grid-row: 2;
}

.experience-card {
    position: relative;
    overflow: hidden;

    min-height: 0;

    background: var(--espresso);
    color: var(--cream);
}


.experience-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s cubic-bezier(.2, .7, .2, 1);
}

.experience-card:hover img {
    transform: scale(1.04);
}

.experience-shade {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            0deg,
            rgba(20, 14, 11, 0.82) 0%,
            rgba(20, 14, 11, 0.15) 65%
        );
}

.experience-content {
    position: absolute;
    z-index: 2;

    right: 24px;
    bottom: 22px;
    left: 24px;

    display: grid;
    grid-template-columns: 40px 1fr auto;
    gap: 20px;
    align-items: end;
}

.experience-content > span:first-child {
    padding-bottom: 8px;

    color: var(--gold);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.experience-content p {
    margin: 0 0 3px;

    color: rgba(244, 239, 230, 0.72);

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.experience-content h3 {
    margin: 0;

    font-size: clamp(34px, 3.2vw, 50px);
    font-weight: 400;
}

.experience-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    border: 1px solid rgba(244, 239, 230, 0.5);
    border-radius: 50%;

    font-size: 18px;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.experience-card:hover .experience-arrow {
    background: var(--cream);
    color: var(--espresso);

    transform: rotate(45deg);
}

@media (max-width: 800px) {

    .experience-section {
        padding: 0 20px 90px;
    }

.experience-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 12px;
}

.experience-coffee,
.experience-food,
.experience-bites {
    grid-column: auto;
    grid-row: auto;
}

.experience-coffee {
    height: 440px;
}

.experience-food,
.experience-bites {
    height: 320px;
}

    .experience-content {
        right: 22px;
        bottom: 22px;
        left: 22px;

        grid-template-columns: 30px 1fr auto;
        gap: 12px;
    }
}
/* =========================================================
   SIGNATURE MENU
   ========================================================= */

.signature-menu {
    padding: 130px 64px;
    background: var(--espresso);
    color: var(--cream);
}

.signature-menu-inner {
    width: min(100%, 1240px);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 120px;
}

.signature-menu .section-eyebrow {
    margin-bottom: 30px;
}

.signature-menu-heading h2 {
    max-width: 520px;
    margin: 0;

    font-size: clamp(52px, 5vw, 78px);
    font-weight: 400;
    letter-spacing: -0.035em;
}

.signature-menu-heading h2 em {
    display: block;
    color: var(--terracotta);
    font-weight: 400;
}

.signature-menu-heading > p:last-child {
    max-width: 500px;
    margin: 34px 0 0;

    color: rgba(244, 239, 230, 0.65);

    font-size: 16px;
    line-height: 1.8;
}


/* MENU LIST */

.signature-menu-list {
    padding-top: 12px;
}

.menu-group + .menu-group {
    margin-top: 58px;
}

.menu-group-label {
    margin: 0 0 20px;

    color: var(--gold);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.menu-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: baseline;
    gap: 16px;

    padding: 17px 0;

    border-bottom: 1px solid rgba(244, 239, 230, 0.12);
}

.menu-item > span:first-child {
    font-family: var(--font-display);
    font-size: 24px;
}

.menu-item strong {
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.menu-line {
    height: 1px;

    background-image: linear-gradient(
        to right,
        rgba(244, 239, 230, 0.22) 35%,
        transparent 0%
    );

    background-position: bottom;
    background-size: 6px 1px;
    background-repeat: repeat-x;
}


/* FULL MENU LINK */

.menu-link {
    display: inline-flex;
    align-items: center;
    gap: 18px;

    margin-top: 50px;
    padding-bottom: 7px;

    border-bottom: 1px solid rgba(244, 239, 230, 0.45);

    font-size: 13px;
    font-weight: 700;
}

.menu-link span {
    font-size: 17px;

    transition: transform 0.25s ease;
}

.menu-link:hover span {
    transform: translate(3px, -3px);
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .signature-menu {
        padding: 95px 24px;
    }

    .signature-menu-inner {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .signature-menu-heading h2 {
        max-width: 650px;
    }
}

@media (max-width: 520px) {

    .signature-menu {
        padding: 80px 20px;
    }

    .signature-menu-inner {
        gap: 55px;
    }

    .signature-menu-heading h2 {
        font-size: clamp(44px, 13vw, 60px);
    }

    .menu-item {
        gap: 10px;
    }

    .menu-item > span:first-child {
        font-size: 20px;
    }

    .menu-item strong {
        font-size: 11px;
    }

    .menu-line {
        display: none;
    }

    .menu-item {
        grid-template-columns: 1fr auto;
    }
}
/* =========================================================
   HOME FINAL CTA
   ========================================================= */

.home-final-cta {
    padding: 85px 64px;
    background: var(--terracotta);
    color: var(--cream);
}

.home-final-cta-inner {
    width: min(100%, 1240px);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr auto;
    gap: 80px;
    align-items: end;
}

.home-final-cta .section-eyebrow {
    color: rgba(244, 239, 230, 0.75);
}

.home-final-cta h2 {
    max-width: 650px;
    margin: 0;

    font-size: clamp(46px, 5vw, 70px);
    font-weight: 400;
    letter-spacing: -0.035em;
}

.home-final-cta h2 em {
    font-weight: 400;
}

.home-final-cta-action {
    max-width: 390px;
}

.home-final-cta-action p {
    margin: 0 0 25px;

    color: rgba(244, 239, 230, 0.85);

    line-height: 1.75;
}

@media (max-width: 800px) {

    .home-final-cta {
        padding: 70px 20px;
    }

    .home-final-cta-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .home-final-cta-action {
        max-width: 520px;
    }
}