.elementor-26 .elementor-element.elementor-element-a62cb1c{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-642e124 */.grahams-hero-grid {
    position: relative;
    width: 100%;
    height: clamp(560px, 66vh, 720px);

    margin: 0;
    padding: 0;

    overflow: hidden;
    background: #181715;

    isolation: isolate;
}


/* =========================================
   PHOTO GRID
========================================= */

.grahams-hero-grid__photos {
    position: absolute;
    inset: 0;
    z-index: 0;

    display: grid;

    grid-template-columns: 1.18fr 0.82fr 1.42fr;
    grid-template-rows: 1.08fr 0.92fr;

    width: 100%;
    height: 100%;

    gap: 3px;

    background: #181715;
}


/* TOP LEFT — THREE DRINKS */

.grahams-hero-grid__photo--1 {
    grid-column: 1 / 3;
    grid-row: 1;
}


/* FULL RIGHT — JOE COFFEE */

.grahams-hero-grid__photo--2 {
    grid-column: 3;
    grid-row: 1 / 3;
}


/* BOTTOM LEFT — MUFFINS */

.grahams-hero-grid__photo--3 {
    grid-column: 1;
    grid-row: 2;
}


/* BOTTOM CENTER — AVOCADO */

.grahams-hero-grid__photo--4 {
    grid-column: 2;
    grid-row: 2;
}


/* UNUSED */

.grahams-hero-grid__photo--5 {
    display: none;
}


/* =========================================
   PHOTO HANDLING
========================================= */

.grahams-hero-grid__photo {
    position: relative;

    min-width: 0;
    min-height: 0;

    overflow: hidden;

    background: #181715;
}

.grahams-hero-grid__photo img {
    position: absolute;
    inset: 0;

    display: block;

    width: 100%;
    height: 100%;

    max-width: none;

    object-fit: cover;

    transform: none;
    transition: none;
    animation: none;
}


/* =========================================
   INDIVIDUAL CROP CONTROL
========================================= */

.grahams-hero-grid__photo--1 img {
    object-position: center 68%;
}

.grahams-hero-grid__photo--2 img {
    object-position: center center;
}

.grahams-hero-grid__photo--3 img {
    object-position: center center;
}

.grahams-hero-grid__photo--4 img {
    object-position: center center;
}


/* =========================================
   DARK OVERLAY
========================================= */

.grahams-hero-grid__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background: rgba(10, 8, 6, 0.72);

    pointer-events: none;
}


/* SUBTLE EXTRA CENTER SCRIM */

.grahams-hero-grid__overlay::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            ellipse at center,
            rgba(5, 4, 3, 0.28) 0%,
            rgba(5, 4, 3, 0.16) 36%,
            rgba(5, 4, 3, 0) 70%
        );

    pointer-events: none;
}


/* =========================================
   BRANDING / HERO CONTENT
========================================= */

.grahams-hero-grid__content {
    position: absolute;
    inset: 0;
    z-index: 2;

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

    width: 100%;
    height: 100%;

    padding: 36px;

    text-align: center;

    pointer-events: none;

    /* Scale logo + tagline + button only */
    transform: scale(1.10);
    transform-origin: center center;
}


/* =========================================
   LOGO
========================================= */

.grahams-hero-grid__logo {
    display: block;

    width: min(58vw, 820px);
    height: auto;

    margin: 0;

    opacity: 0;

    filter:
        invert(1)
        blur(5px);

    transform:
        translateY(10px)
        scale(.99);

    animation:
        grahamsLogoReveal
        1.8s
        cubic-bezier(.16, 1, .3, 1)
        .35s
        forwards;
}


/* =========================================
   TAGLINE
========================================= */

.grahams-hero-grid__content p {
    margin: 26px 0 0;

    color: #f6f1e8;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(18px, 1.5vw, 24px);
    font-weight: 400;
    line-height: 1.4;

    letter-spacing: .02em;

    text-shadow:
        0 3px 20px rgba(0, 0, 0, .48);

    opacity: 0;
    transform: translateY(8px);

    animation:
        grahamsTaglineReveal
        1.25s
        cubic-bezier(.16, 1, .3, 1)
        1.35s
        forwards;
}


/* =========================================
   VIEW MENU BUTTON
========================================= */

.grahams-hero-grid__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 150px;
    min-height: 48px;

    margin-top: 28px;
    padding: 0 28px;

    border: 1px solid #f6f1e8;

    background: #f6f1e8;
    color: #181715;

    text-decoration: none;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;

    letter-spacing: 0.16em;
    text-transform: uppercase;

    pointer-events: auto;

    opacity: 0;
    transform: translateY(8px);

    animation:
        grahamsButtonReveal
        1.05s
        cubic-bezier(.16, 1, .3, 1)
        1.8s
        forwards;
}

.grahams-hero-grid__button:focus-visible {
    outline: 1px solid #f6f1e8;
    outline-offset: 4px;
}


/* =========================================
   ANIMATIONS
========================================= */

@keyframes grahamsLogoReveal {

    0% {
        opacity: 0;

        filter:
            invert(1)
            blur(5px);

        transform:
            translateY(10px)
            scale(.99);
    }

    60% {
        opacity: .88;
    }

    100% {
        opacity: 1;

        filter:
            invert(1)
            blur(0);

        transform:
            translateY(0)
            scale(1);
    }
}


@keyframes grahamsTaglineReveal {

    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: .96;
        transform: translateY(0);
    }
}


@keyframes grahamsButtonReveal {

    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .grahams-hero-grid {
        height: 620px;
    }

    .grahams-hero-grid__logo {
        width: min(76vw, 720px);
    }

    .grahams-hero-grid__content {
        transform: scale(1.10);
    }
}


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

@media (max-width: 600px) {

    .grahams-hero-grid {
        height: 600px;
    }

    .grahams-hero-grid__photos {
        grid-template-columns: 1fr 1fr;

        grid-template-rows:
            1.15fr
            .85fr
            .85fr;

        gap: 3px;
    }

    .grahams-hero-grid__photo--1 {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    .grahams-hero-grid__photo--2 {
        grid-column: 1;
        grid-row: 2 / 4;
    }

    .grahams-hero-grid__photo--3 {
        grid-column: 2;
        grid-row: 2;
    }

    .grahams-hero-grid__photo--4 {
        grid-column: 2;
        grid-row: 3;
    }

    /* Explicitly preserve the 10% content scale on mobile */
    .grahams-hero-grid__content {
        transform: scale(1.10);
        transform-origin: center center;
        padding: 28px;
    }

    .grahams-hero-grid__logo {
        width: 84vw;
    }

    .grahams-hero-grid__content p {
        margin-top: 20px;
        font-size: 17px;
    }

    .grahams-hero-grid__button {
        min-width: 142px;
        min-height: 46px;

        margin-top: 24px;
        padding: 0 24px;

        font-size: 10px;
    }

    .grahams-hero-grid__overlay {
        background: rgba(10, 8, 6, 0.76);
    }
}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    .grahams-hero-grid__logo,
    .grahams-hero-grid__content p,
    .grahams-hero-grid__button {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .grahams-hero-grid__logo {
        filter: invert(1);
    }
}
@media (min-width: 901px) {
    .grahams-hero-grid__overlay {
        background: rgba(10, 8, 6, 0.82);
    }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-a62cb1c */.grahams-hero {
    position: relative;
    width: 100%;
    height: clamp(500px, 56vh, 600px);
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #181715;
}


/* IMAGE */

.grahams-hero__background {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    /* PRIORITIZE THE DRINKS */
    object-position: 50% 100%;
}


/* DARK WASH */

.grahams-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background: rgba(18, 16, 14, 0.26);

    pointer-events: none;
}


/* CONTENT */

.grahams-hero__content {
    position: absolute;
    inset: 0;
    z-index: 2;

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

    width: 100%;
    height: 100%;

    padding: 30px;

    text-align: center;

    /* KEEP BRANDING IN THE CLEAN BACKGROUND AREA */
    transform: translateY(-7%);
}


/* LOGO */

.grahams-hero__logo {
    display: block;

    width: min(54vw, 760px);
    height: auto;

    margin: 0;

    filter: invert(1);

    opacity: 1;
}


/* TAGLINE */

.grahams-hero__tagline {
    margin: 22px 0 0;

    color: #f6f1e8;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(17px, 1.35vw, 22px);
    font-weight: 400;
    line-height: 1.4;

    letter-spacing: 0.015em;

    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.32);
}


/* TABLET */

@media (max-width: 900px) {

    .grahams-hero {
        height: 520px;
    }

    .grahams-hero__background {
        object-position: 50% 100%;
    }

    .grahams-hero__logo {
        width: min(72vw, 650px);
    }

    .grahams-hero__content {
        transform: translateY(-5%);
    }
}


/* MOBILE */

@media (max-width: 600px) {

    .grahams-hero {
        height: 480px;
    }

    .grahams-hero__background {
        object-position: 50% 100%;
    }

    .grahams-hero__logo {
        width: 86vw;
    }

    .grahams-hero__content {
        padding: 24px 18px;
        transform: translateY(-4%);
    }

    .grahams-hero__tagline {
        margin-top: 18px;
        font-size: 17px;
    }
}/* End custom CSS */