:root {
    --ebony: #1e1b3a;
    --ebony-2: #262253;
    --ebony-3: #2f2a66;
    --gold: #e8c878;
    --saffron: #d2a857;
    --gold-soft: #c4ad64;
    --text: #f5ecd4;
    --muted: #b9b0c9;
    --line: rgba(232, 200, 120, .25);
    --grad-gold: linear-gradient(135deg, #e8c878 0%, #c4a85a 60%, #8a7338 100%);
    --shadow-gold: 0 12px 40px -10px rgba(232, 200, 120, .45);
    --serif: "Playfair Display";
    --sans: sans-serif;
    --footer-bg: #04070c;
    --footer-secondary: #17234c;

    --header-bg: #221c44;
    --header-light: rgba(197, 175, 151, 0.79);

    --gold: #d5b46d;
    --gold-light: #e3c9a4;
    --cream: #E5CFBD;

    --dropdown-bg: #111c3e;

    --white: #ffffff;
    --text-muted: #999999;

    --border: #3c3353;
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--sans);
    background: var(--ebony);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block
}

a {
    color: inherit;
    text-decoration: none
}

.container1 {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%
}

.container1.narrow {
    max-width: 880px
}

.center {
    text-align: center
}

.mt-50 {
    margin-top: 50px
}

.muted {
    color: var(--muted)
}

.gold {
    color: var(--saffron)
}

.gold-italic {
    font-family: var(--serif);
    font-style: italic;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
}

.gold-link {
    color: var(--saffron);
    font-weight: 500;
    border-bottom: 1px solid var(--line);
    padding-bottom: 2px;
    transition: .3s
}

.gold-link:hover {
    color: var(--gold);
    border-color: var(--gold)
}

/* ========== BUTTONS ========== */
.btn1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s ease;
    border: 1px solid transparent;
    white-space: nowrap;
}

.btn1-primarys {
    background: var(--grad-gold);
    color:  #221C44 ;
    box-shadow: var(--shadow-gold);
}

.btn1-primarys:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 50px -10px rgba(232, 184, 75, .6)
}

.btn1-ghosts {
    background: transparent;
    color: var(--saffron);
    border: 1px solid rgba(200, 146, 42, .5);
}

.btn1-ghosts:hover {
    background: rgba(200, 146, 42, .1);
    border-color: var(--gold);
    transform: translateY(-2px)
}

/* ========== ELEMENTS ========== */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--saffron);
    font-weight: 500;
    margin-bottom: 20px;
}

.eyebrow.center {
    display: flex;
    justify-content: center
}

.eyebrow .line {
    width: 40px;
    height: 1px;
    background: var(--gold)
}

h1,
h2,
h3 {
    font-family: var(--serif);
    font-weight: 500;
    letter-spacing: -.5px;
    color: #fff;
    line-height: 1.15
}

h2 {
    font-size: clamp(32px, 4.2vw, 52px);
    margin-bottom: 20px
}

h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #fff
}

.section1 {
    padding: 110px 0;
    position: relative
}

.section1-dark {
    background: linear-gradient(180deg, var(--ebony) 0%, var(--ebony-2) 100%)
}

.section1-head {
    max-width: 780px;
    margin: 0 auto 70px;
    text-align: center
}

.lead {
    font-size: 17px;
    color: var(--muted);
    margin-top: 14px
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-color: #1E1B3A;
    background-size: cover;
    background-position: center;
    filter: brightness(.45);
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    from {
        transform: scale(1)
    }

    to {
        transform: scale(1.08)
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 10, 0, .92) 0%, rgba(26, 10, 0, .55) 50%, rgba(26, 10, 0, .75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px
}

.hero-title {
    font-size: clamp(40px, 6vw, 76px);
    margin: 8px 0 24px;
    line-height: 1.05
}

.hero-sub {
    font-size: 18px;
    color: #d9cdb9;
    max-width: 600px;
    margin-bottom: 38px
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 60px
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 680px
}

.hstat-num {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 600;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.hstat-num .star {
    font-size: 24px
}

.hstat-lbl {
    font-size: 13px;
    color: var(--muted);
    margin-top: 4px
}

/* ========== TRUST STRIP ========== */
.trust-strip {
    background: linear-gradient(90deg, #2a1a4a 0%, #241640 50%, #2a1a4a 100%);
    padding: 36px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}


.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    text-align: center
}

.t-num {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 600;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.t-num .star {
    font-size: 22px
}

.t-lbl {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--muted);
    margin-top: 6px;
    text-transform: uppercase
}

/* ========== WHY GRID ========== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px
}

.why-card {
    background: linear-gradient(160deg, rgba(200, 146, 42, .06), rgba(200, 146, 42, .01));
    border: 1px solid var(--line);
    padding: 38px 30px;
    border-radius: 12px;
    transition: all .4s ease;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--grad-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: .5s
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 146, 42, .5);
    background: linear-gradient(160deg, rgba(200, 146, 42, .1), rgba(200, 146, 42, .02))
}

.why-card:hover::before {
    transform: scaleX(1)
}

.why-card .num {
    font-family: var(--serif);
    font-size: 38px;
    color: var(--gold);
    opacity: .7;
    margin-bottom: 14px;
    font-weight: 500
}

.why-card p {
    color: var(--muted);
    font-size: 15px
}

/* ========== DISH GRID ========== */
.dish-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px
}

.dish-card {
    background: var(--ebony-2);
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    transition: .4s;
    display: block;
}

.dish-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 146, 42, .5);
    box-shadow: 0 20px 50px -15px rgba(0, 0, 0, .5)
}

.dish-img {
    height: 240px;
    background-size: cover;
    background-position: center;
    transition: .6s
}

.dish-card:hover .dish-img {
    transform: scale(1.06)
}

.dish-body {
    padding: 28px
}

.dish-body h3 {
    margin-bottom: 10px
}

.dish-body p {
    color: var(--muted);
    font-size: 14.5px;
    margin-bottom: 18px
}

.dish-link {
    color: var(--saffron);
    font-size: 14px;
    font-weight: 500;
    transition: .3s
}

.dish-card:hover .dish-link {
    color: var(--gold);
    letter-spacing: .5px
}

/* ========== HERITAGE ========== */
.heritage {
    background: var(--ebony)
}

.heritage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.heritage-img {
    position: relative
}

.heritage-img img {
    border-radius: 12px;
    box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .7)
}

.heritage-badge {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: var(--grad-gold);
    padding: 24px 32px;
    border-radius: 12px;
    text-align: center;
    color: #1A0A00;
    box-shadow: var(--shadow-gold);
}

.hb-num {
    font-family: var(--serif);
    font-size: 38px;
    font-weight: 700;
    line-height: 1
}

.hb-lbl {
    font-size: 12px;
    margin-top: 4px;
    font-weight: 500;
    letter-spacing: .5px
}

.heritage-text h2 {
    margin-bottom: 24px
}

.heritage-text p {
    color: var(--muted);
    margin-bottom: 16px;
    font-size: 16px
}

/* ========== AMBIENCE ========== */
.ambience-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: stretch
}

.ambience-main {
    border-radius: 12px;
    overflow: hidden
}

.ambience-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 480px;
    transition: .8s
}

.ambience-main:hover img {
    transform: scale(1.04)
}

.ambience-list {
    display: flex;
    flex-direction: column;
    gap: 18px
}

.amb-card {
    background: linear-gradient(160deg, rgba(200, 146, 42, .06), rgba(200, 146, 42, .01));
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 24px 28px;
    transition: .3s;
    flex: 1;
}

.amb-card:hover {
    border-color: rgba(200, 146, 42, .5);
    transform: translateX(6px)
}

.amb-card p {
    color: var(--muted);
    font-size: 14.5px;
    margin: 0
}

/* ========== LOCATION ========== */
.location-card {
    max-width: 920px;
    margin: 0 auto;
    background: linear-gradient(160deg, rgba(200, 146, 42, .08), rgba(200, 146, 42, .02));
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 48px;
}

.location-card h3 {
    color: var(--saffron);
    font-size: 18px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--sans);
    font-weight: 500
}

.location-card .big {
    font-family: var(--serif);
    font-size: 24px;
    color: #fff;
    margin-bottom: 32px;
    line-height: 1.4
}

.loc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--line)
}

.loc-k {
    display: block;
    color: var(--saffron);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px
}

.loc-v {
    color: var(--text);
    font-size: 15px
}

.loc-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

/* ========== DELIVERY ========== */
.delivery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 50px
}

.del-card {
    background: linear-gradient(160deg, rgba(200, 146, 42, .06), rgba(200, 146, 42, .01));
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 40px 32px;
    text-align: center;
    transition: .3s;
}

.del-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 146, 42, .5)
}

.del-icon {
    font-size: 40px;
    margin-bottom: 18px
}

.del-card p {
    color: var(--muted);
    font-size: 15px
}

/* ========== TESTIMONIALS ========== */
.testi1-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px
}

.testi1 {
    background: linear-gradient(160deg, rgba(200, 146, 42, .06), rgba(200, 146, 42, .01));
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 36px;
    transition: .3s;
}

.testi1 :hover {
    border-color: rgba(200, 146, 42, .4);
    transform: translateY(-4px)
}

.stars {
    color: var(--saffron);
    letter-spacing: 4px;
    margin-bottom: 16px;
    font-size: 16px
}

.testi1 .texts {
    font-family: var(--serif);
    font-size: 20px;
    font-style: italic;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.5
}

.testi1 .cite {
    color: var(--muted);
    font-size: 14px;
    font-style: normal
}

/* ========== FAQ ========== */
.faq1 {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.faq1 details {
    background: linear-gradient(160deg, rgba(200, 146, 42, .05), rgba(200, 146, 42, .01));
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 22px 28px;
    transition: .3s;
}

.faq1 details[open] {
    border-color: rgba(200, 146, 42, .5);
    background: linear-gradient(160deg, rgba(200, 146, 42, .1), rgba(200, 146, 42, .02))
}

.faq1 summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-family: var(--serif);
    font-size: 20px;
    color: #fff;
    font-weight: 500;
}

.faq1 summary::-webkit-details-marker {
    display: none
}

.faq1 .plus {
    color: var(--saffron);
    font-size: 24px;
    transition: .3s;
    font-weight: 300
}

.faq1 details[open] .plus {
    transform: rotate(45deg)
}

.faq1 p {
    margin-top: 16px;
    color: var(--muted);
    font-size: 15px
}

/* ========== FINAL CTA ========== */
.final-cta {
    padding: 120px 0;
    background: radial-gradient(ellipse at center, rgba(200, 146, 42, .15) 0%, var(--ebony) 70%);
    border-top: 1px solid var(--line);
}

.final-cta h2 {
    font-size: clamp(36px, 5vw, 60px);
    margin-bottom: 20px
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-top: 36px
}


/* ========== FLOATING ========== */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 40;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
    transition: .3s;
}

.wa-float:hover {
    transform: scale(1.1)
}

.mobile-bar {
    display: none
}

/* ========== REVEAL ========== */
.reveal {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    transition: none;
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width:1024px) {

    .why-grid,
    .dish-grid,
    .delivery-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px
    }

    .heritage-grid,
    .ambience-grid {
        grid-template-columns: 1fr;
        gap: 50px
    }

    .heritage-badge {
        right: 20px
    }

    .section1 {
        padding: 80px 0
    }
}

@media (max-width:768px) {
    .container1 {
        padding: 0 20px
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px
    }

    .hstat-num {
        font-size: 28px
    }

    .why-grid,
    .dish-grid,
    .delivery-grid,
    .testi1-grid {
        grid-template-columns: 1fr
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .loc-grid {
        grid-template-columns: 1fr
    }

    .location-card {
        padding: 32px 24px
    }

    .hero {
        padding: 120px 0 60px;
        min-height: auto
    }

    .hero-sub {
        font-size: 16px
    }

    .section1 {
        padding: 70px 0
    }

    .section1-head {
        margin-bottom: 50px
    }

    .testi1 .texts {
        font-size: 17px
    }

    .faq1 summary {
        font-size: 17px
    }

    .mobile-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 40;
        background: rgba(26, 10, 0, .96);
        backdrop-filter: blur(12px);
        border-top: 1px solid var(--line);
        padding: 10px;
        gap: 8px;
    }

    .mb-btn {
        flex: 1;
        text-align: center;
        padding: 12px;
        border-radius: 8px;
        font-size: 13px;
        font-weight: 500;
        border: 1px solid var(--line);
        color: var(--saffron);
    }

    .mb-btn.primary {
        background: var(--grad-gold);
        color: #1A0A00;
        border-color: transparent
    }

    .wa-float {
        bottom: 80px;
        width: 48px;
        height: 48px
    }

    .wa-float svg {
        width: 24px;
        height: 24px
    }

    body {
        padding-bottom: 70px
    }
}

@media (max-width:480px) {
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 18px
    }

    .heritage-badge {
        position: static;
        display: inline-block;
        margin-top: 20px
    }

    .heritage-img {
        text-align: center
    }
}

/* ========== HERO "RESERVE TABLE" BUTTON TEXT COLOR FIX ========== */
.hero-ctas .btn1-primarys,
.hero-ctas .btn1-primarys:link,
.hero-ctas .btn1-primarys:visited,
.hero-ctas .btn1-primarys:hover,
.hero-ctas .btn1-primarys:focus,
.hero-ctas .btn1-primarys:active {
    color: #221C44 !important;
}