:root {
    --green: #0d4d32;
    --green2: #083b27;
    --red: #cf2d2a;
    --cream: #f7f0df;
    --sand: #ead9ba;
    --ink: #171a17;
    --muted: #656d67;
    --white: #fff;
    --line: rgba(16,38,25,.14);
    --serif: 'Cormorant Garamond',serif;
    --sans: 'Manrope',sans-serif
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: var(--sans);
    color: var(--ink);
    background: #fbfaf6;
    overflow-x: hidden
}

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

.container {
    width: min(1180px,calc(100% - 48px));
    margin: auto
}

.topbar {
    background: var(--green2);
    color: #e9f0ea;
    font-size: 13px
}

.topbar__inner {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.topbar a:hover {
    color: #fff
}

.site-header {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255,255,255,.97);
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
    transition: .25s
}

.site-header.is-sticky {
    position: fixed;
    top: 0;
    animation: drop .3s ease
}

.nav-wrap {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.brand img {
    width: 148px;
    height: 72px;
    object-fit: contain
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px
}

.main-nav>a:not(.btn) {
    font-size: 14px;
    font-weight: 700;
    color: #22332a
}

.main-nav>a:not(.btn):hover {
    color: var(--red)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .02em;
    transition: .2s
}

.btn:hover {
    transform: translateY(-2px)
}

.btn--solid {
    background: var(--red);
    color: white
}

.btn--outline {
    border: 1px solid var(--green);
    color: var(--green)
}

.btn--ghost {
    border: 1px solid rgba(255,255,255,.65);
    color: #fff
}

.btn--large {
    min-height: 52px;
    padding: 0 26px
}

.btn--dark {
    background: var(--green);
    color: #fff
}

.btn--light {
    background: #fff;
    color: var(--green2)
}

.btn--outline-light {
    border: 1px solid rgba(255,255,255,.55);
    color: #fff
}

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    padding: 8px
}

.nav-toggle span {
    display: block;
    width: 27px;
    height: 2px;
    background: var(--green);
    margin: 5px 0;
    transition: transform .25s ease,opacity .2s ease
}

.nav-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.nav-toggle.is-active span:nth-child(2) {
    opacity: 0
}

.nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.hero {
    height: min(820px,88vh);
    min-height: 660px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 92px;
    color: #fff
}

.hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 1s,transform 6s
}

.hero__slide.is-active {
    opacity: 1;
    transform: scale(1)
}

.hero__slide--one {
    background-image: url('../img/slide1.jpg')
}

.hero__slide--two {
    background-image: url('../img/slide2.jpg')
}

.hero__slide--three {
    background-image: url('../img/slide3.jpg')
}

.hero__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,rgba(6,27,17,.86),rgba(6,27,17,.46) 56%,rgba(6,27,17,.18))
}

.hero__content {
    position: relative;
    z-index: 2;
    padding-top: 30px
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .19em;
    font-size: 12px;
    font-weight: 800;
    color: #f7d8b4
}

.eyebrow--dark {
    color: var(--red)
}

h1,h2,h3 {
    font-family: var(--serif);
    line-height: .98;
    margin: 0
}

h1 {
    font-size: clamp(58px,7vw,98px);
    max-width: 850px;
    font-weight: 600;
    letter-spacing: -.03em
}

h1 em {
    color: #f3d7aa;
    font-style: italic;
    font-weight: 500
}

.hero p {
    font-size: 17px;
    line-height: 1.7;
    max-width: 610px;
    color: #e6ece7;
    margin: 24px 0 30px
}

.hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.hero__dots {
    position: absolute;
    bottom: 26px;
    z-index: 4;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px
}

.hero__dots button {
    width: 26px;
    height: 4px;
    border: 0;
    padding: 0;
    background: rgba(255,255,255,.42);
    cursor: pointer
}

.hero__dots button.is-active {
    background: #fff;
    width: 44px
}

.section {
    padding: 105px 0
}

.split {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 90px;
    align-items: center
}

.split__media {
    position: relative;
    min-height: 560px
}

.photo-card {
    border-radius: 2px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 28px 60px rgba(21,43,29,.16)
}

.photo-card--main {
    height: 530px;
    width: 86%;
    background-image: url('../img/About.jpg')
}

.mini-card {
    position: absolute;
    right: 0;
    bottom: 0;
    background: var(--green);
    color: #fff;
    padding: 26px 28px;
    width: 230px
}

.mini-card strong {
    font-family: var(--serif);
    font-size: 32px;
    display: block
}

.mini-card span {
    font-size: 12px;
    line-height: 1.5;
    color: #d7e6dc
}

.split__content h2,.section-head h2,.experience-copy h2,.contact-panel h2 {
    font-size: clamp(44px,5vw,66px);
    font-weight: 600;
    color: #183126;
    margin: 14px 0 24px
}

.split__content p,.experience-copy p {
    color: var(--muted);
    line-height: 1.85;
    font-size: 15px
}

.text-link {
    display: inline-flex;
    gap: 10px;
    font-weight: 800;
    color: var(--green);
    margin-top: 15px
}

.text-link span {
    color: var(--red)
}

.menu-preview {
    background: var(--cream)
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 45px
}

.dish-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px
}

.dish-card {
    background: #fff;
    box-shadow: 0 12px 36px rgba(45,43,30,.07)
}

.dish-card__img {
    height: 310px;
    background-size: cover;
    background-position: center
}

.dish-card__img--one {
    background-image: url('../img/entree.jpg')
}

.dish-card__img--two {
    background-image: url('../img/mains.jpg')
}

.dish-card__img--three {
    background-image: url('../img/bread.jpg')
}

.dish-card__body {
    padding: 27px
}

.dish-card__body>span {
    font-size: 11px;
    font-weight: 800;
    color: var(--red)
}

.dish-card h3 {
    font-size: 32px;
    color: #193327;
    margin: 8px 0 12px
}

.dish-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7
}

.feature-band {
    background: var(--green);
    color: #fff;
    padding: 65px 0
}

.feature-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px
}

.feature-band h2 {
    font-size: 58px;
    margin: 10px 0
}

.feature-band p {
    color: #d9e6dd;
    max-width: 670px
}

.feature-band__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0
}

.experience-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: stretch
}

.experience-copy {
    background: #fff;
    padding: 70px 60px;
    box-shadow: 0 20px 50px rgba(35,46,39,.07)
}

.experience-photo {
    min-height: 600px;
    background: url('../img/openinghours.jpg') center/cover
}

.stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    border-top: 1px solid var(--line);
    margin-top: 38px;
    padding-top: 28px;
    gap: 20px
}

.stats strong {
    font-family: var(--serif);
    font-size: 34px;
    color: var(--green);
    display: block
}

.stats span,.experience-copy small {
    font-size: 11px;
    color: #7a827d
}

.experience-copy small {
    display: block;
    margin-top: 25px
}

.contact {
    background: #15271f
}

.contact-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    min-height: 590px
}

.contact-panel {
    padding: 68px 58px;
    background: var(--green);
    color: #fff
}

.contact-panel h2 {
    color: #fff
}

.contact-list {
    display: grid;
    gap: 0;
    margin: 25px 0 34px
}

.contact-list>a,.contact-list>div {
    padding: 17px 0;
    border-bottom: 1px solid rgba(255,255,255,.15)
}

.contact-list span {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #bcd0c2;
    margin-bottom: 6px
}

.contact-list strong {
    font-size: 14px;
    line-height: 1.55
}

.contact-actions {
    display: flex;
    gap: 10px
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 590px;
    border: 0;
    filter: saturate(.72) contrast(1.05)
}

footer {
    background: #0b1711;
    color: #c9d3cc;
    padding: 70px 0 25px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr .7fr 1fr 1fr;
    gap: 50px
}

.footer-brand img {
    width: 165px;
    height: 95px;
    object-fit: contain;
    background: #fff;
    padding: 8px
}

.footer-grid h4 {
    color: #fff;
    margin: 0 0 15px;
    font-family: var(--serif);
    font-size: 23px
}

.footer-grid p,.footer-grid a {
    display: block;
    font-size: 13px;
    line-height: 1.8;
    margin: 5px 0
}

.text-link--light {
    color: #fff!important
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 48px;
    padding-top: 22px;
    font-size: 11px;
    color: #849089
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: .7s
}

.reveal.visible {
    opacity: 1;
    transform: none
}

@keyframes drop {
    from {
        transform: translateY(-100%)
    }

    to {
        transform: none
    }
}

@media(max-width: 980px) {
    .topbar {
        display:none
    }

    .site-header {
        position: fixed;
        top: 0
    }

    .nav-wrap {
        min-height: 76px
    }

    .brand img {
        width: 124px;
        height: 58px
    }

    .nav-toggle {
        display: block
    }

    .main-nav {
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        background: #fff;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 22px 24px 30px;
        box-shadow: 0 18px 35px rgba(0,0,0,.1)
    }

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

    .main-nav>a:not(.btn) {
        padding: 9px 0
    }

    .hero {
        margin-top: 76px;
        min-height: 620px
    }

    .split {
        grid-template-columns: 1fr;
        gap: 50px
    }

    .split__media {
        min-height: 480px
    }

    .photo-card--main {
        height: 455px
    }

    .dish-grid {
        grid-template-columns: 1fr 1fr
    }

    .dish-card:last-child {
        grid-column: span 2
    }

    .feature-band__inner {
        align-items: flex-start;
        flex-direction: column
    }

    .experience-grid,.contact-grid {
        grid-template-columns: 1fr
    }

    .experience-photo {
        min-height: 440px
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width: 640px) {
    .container {
        width:min(100% - 28px,1180px)
    }

    .section {
        padding: 72px 0
    }

    .hero {
        min-height: 650px;
        height: calc(100vh - 76px)
    }

    .hero__content {
        padding-top: 10px
    }

    h1 {
        font-size: 52px
    }

    .hero p {
        font-size: 15px
    }

    .btn {
        width: 100%
    }

    .hero__actions {
        flex-direction: column;
        max-width: 320px
    }

    .split__media {
        min-height: 390px
    }

    .photo-card--main {
        width: 92%;
        height: 370px
    }

    .mini-card {
        width: 200px;
        padding: 20px
    }

    .split__content h2,.section-head h2,.experience-copy h2,.contact-panel h2 {
        font-size: 42px
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column
    }

    .section-head .btn {
        width: auto
    }

    .dish-grid {
        grid-template-columns: 1fr
    }

    .dish-card:last-child {
        grid-column: auto
    }

    .dish-card__img {
        height: 260px
    }

    .feature-band h2 {
        font-size: 43px
    }

    .feature-band__actions {
        width: 100%;
        flex-direction: column
    }

    .experience-copy,.contact-panel {
        padding: 45px 28px
    }

    .stats {
        grid-template-columns: 1fr 1fr
    }

    .stats div:last-child {
        grid-column: span 2
    }

    .contact-actions {
        flex-direction: column
    }

    .map-wrap iframe {
        min-height: 410px
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .footer-bottom {
        flex-direction: column
    }

    .hero__shade {
        background: rgba(6,27,17,.66)
    }
}

/* Requested updates */
.topbar__inner--two {
    justify-content: space-between
}

.topbar__inner--two span {
    text-align: right
}

.dish-card__body {
    display: flex;
    flex-direction: column;
    height: calc(100% - 310px)
}

.dish-order-btn {
    margin-top: auto;
    padding-top: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--red);
    color: #fff;
    border-radius: 9px;
    min-height: 48px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .03em;
    transition: .25s
}

.dish-order-btn img {
    width: 26px;
    height: 26px;
    object-fit: contain
}

.dish-order-btn:hover {
    background: #b92120;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(207,45,42,.22)
}

.hours-widget-shell {
    margin-top: 30px
}

.hours-widget-shell[data-om-widget] {
    --omw-accent: var(--green);
    --omw-accent2: var(--red);
    --omw-bg: #fff;
    --omw-bg-alt: #f7f0df;
    --omw-border: #ded8ca;
    background: #fff;
    padding: 0;
    border-radius: 0
}

.hours-widget-shell .omw-hours-table td {
    padding: 12px 10px
}

.hours-widget-shell .omw-hours-today td {
    background: #f7f0df!important
}

.hours-widget-shell .omw-hours-today .omw-day {
    color: var(--red)
}

.booking-section {
    background: #fbfaf6
}

.booking-head {
    margin-bottom: 30px
}

.booking-head p {
    max-width: 650px;
    color: var(--muted);
    line-height: 1.8
}

.booking-frame-wrap {
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 20px 50px rgba(30,50,38,.08);
    overflow: hidden;
    width: 100%;
    min-height: 450px;
    border-radius: 12px
}

.booking-frame-wrap iframe {
    display: block;
    width: 100%;
    height: 450px;
    min-height: 450px;
    border: 0;
    background: #fff;
    overflow: hidden
}

footer {
    position: relative;
    background: var(--cream);
    color: #435348;
    border-top: 6px solid var(--green);
    padding-top: 68px
}

footer:before {
    content: "";
    position: absolute;
    top: -6px;
    left: 0;
    width: 30%;
    height: 6px;
    background: var(--red)
}

.footer-grid h4 {
    color: var(--green)
}

.footer-grid a:hover {
    color: var(--red)
}

.footer-brand img {
    border: 1px solid rgba(13,77,50,.12);
    box-shadow: 0 8px 24px rgba(13,77,50,.08)
}

.text-link--light {
    color: var(--red)!important
}

.footer-bottom {
    border-top: 1px solid rgba(13,77,50,.16);
    color: #68766d
}

.footer-bottom span:last-child {
    color: var(--green);
    font-weight: 700
}

.floating-order {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ff644c;
    color: #fff;
    min-height: 62px;
    padding: 0 22px 0 14px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 15px;
    box-shadow: 0 14px 38px rgba(0,0,0,.25);
    animation: orderFloat 2.8s ease-in-out infinite;
    transition: .25s
}

.floating-order:hover {
    transform: translateY(-4px) scale(1.02);
    background: #e84e39
}

.floating-order__icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    position: relative;
    border-radius: 50%
}

.floating-order__icon:before {
    content: "";
    position: absolute;
    inset: 1px;
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 50%;
    animation: orderPulse 1.8s ease-out infinite
}

.floating-order img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    border-radius: 50%
}

@keyframes orderFloat {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-5px)
    }
}

@keyframes orderPulse {
    0% {
        transform: scale(.75);
        opacity: .9
    }

    100% {
        transform: scale(1.35);
        opacity: 0
    }
}

@media(max-width: 980px) {
    .topbar__inner--two {
        display:none
    }

    .dish-card__body {
        height: auto
    }

    .booking-frame-wrap,.booking-frame-wrap iframe {
        min-height: 450px;
        height: 450px
    }
}

@media(max-width: 640px) {
    .floating-order {
        right:12px;
        bottom: 12px;
        min-height: 54px;
        padding: 0 16px 0 10px;
        font-size: 12px;
        border-radius: 8px
    }

    .floating-order__icon {
        width: 32px;
        height: 32px
    }

    .floating-order img {
        width: 30px;
        height: 30px
    }

    .booking-frame-wrap,.booking-frame-wrap iframe {
        min-height: 450px;
        height: 450px
    }

    .hours-widget-shell {
        overflow-x: auto
    }

    .hours-widget-shell .omw-day {
        min-width: 115px
    }
}

/* Final requested tweaks */
.dish-order-btn {
    gap: 0
}

.dish-order-btn img {
    display: none!important
}

footer {
    background: #fff!important;
    color: #435348!important;
    border-top: 6px solid var(--green)!important
}

footer:before {
    background: var(--red)!important
}

.footer-grid h4 {
    color: var(--green)!important
}

.footer-grid p,.footer-grid a {
    color: #435348
}

.text-link--light {
    color: var(--red)!important
}

.footer-bottom {
    border-top: 1px solid rgba(13,77,50,.16)!important;
    color: #68766d!important
}

.footer-bottom span:last-child {
    color: var(--green)!important;
    font-weight: 700
}

.floating-order {
    left: 24px!important;
    right: auto!important
}

@media(max-width: 640px) {
    .floating-order {
        left:12px!important;
        right: auto!important
    }
}

/* Order Online button alignment fix only */
.dish-grid {
    align-items: stretch
}

.dish-card {
    display: flex;
    flex-direction: column;
    height: 100%
}

.dish-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    height: auto!important
}

.dish-order-btn {
    margin-top: auto;
    width: 100%;
    padding-top: 0;
    min-height: 60px;
    border-radius: 32px;
}
