body {
    scroll-behavior: smooth;
}

.hero-gradient {
    background: linear-gradient(140deg, rgba(43, 21, 13, 0.94), rgba(164, 90, 50, 0.78) 55%, rgba(212, 154, 74, 0.78));
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 12%, rgba(255, 210, 166, 0.35), transparent 50%),
                radial-gradient(circle at 80% 0%, rgba(255, 246, 236, 0.18), transparent 55%),
                linear-gradient(160deg, rgba(43, 21, 13, 0.1), rgba(130, 57, 27, 0.25));
    mix-blend-mode: screen;
    pointer-events: none;
}

.hero-image {
    position: relative;
    border-radius: 36px;
    overflow: hidden;
    border: 1px solid rgba(255, 248, 237, 0.2);
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(18, 31, 50, 0.05), rgba(192, 138, 45, 0.2));
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.05);
}

.hero-gradient::before,
.hero-gradient::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.45;
    pointer-events: none;
}

.hero-gradient::before {
    background: radial-gradient(circle at top left, rgba(212, 154, 74, 0.4), transparent 55%),
                radial-gradient(circle at bottom right, rgba(255, 210, 166, 0.35), transparent 60%);
}

.hero-gradient::after {
    background-image: radial-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px);
    background-size: 36px 36px;
    mix-blend-mode: soft-light;
}

.nav-compact .nav-wrapper {
    padding: 1rem 1.5rem;
}

.nav-wrapper {
    padding: 2rem 2.5rem;
    transition: all 0.3s ease;
    width: 100%;
}

.nav-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: rgba(255, 246, 236, 0.94);
    border: 1px solid rgba(212, 154, 74, 0.25);
    border-radius: 3rem;
    padding: 1.75rem;
    box-shadow: 0 24px 48px rgba(43, 21, 13, 0.08);
    backdrop-filter: blur(16px);
    transition: all 0.3s ease;
}

.nav-cta a {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta a:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(130, 57, 27, 0.3);
}

.nav-compact .nav-wrapper {
    padding: 1rem 1.5rem;
}

.nav-compact .nav-inner {
    gap: 1rem;
    border-radius: 9999px;
    padding: 0.85rem 1.75rem;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.nav-compact .nav-cta {
    justify-content: flex-end;
}

.nav-compact .nav-cta a {
    padding: 0.55rem 1.5rem;
    font-size: 0.85rem;
}

.nav-compact img.nav-logo {
    height: 3.25rem;
}

@media (min-width: 768px) {
    .nav-compact .nav-links {
        display: flex !important;
        gap: 1.5rem;
    }
}

@media (max-width: 767px) {
    .nav-compact .nav-inner {
        flex-direction: column;
        align-items: stretch;
        border-radius: 3rem;
    }
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 1.1rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 246, 236, 0.45);
    background: rgba(255, 246, 236, 0.16);
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 246, 236, 0.82);
}

.hero-badge--accent {
    background: #fff6ec;
    color: #2b150d;
    border-color: rgba(255, 246, 236, 0.95);
    box-shadow: 0 18px 32px rgba(43, 21, 13, 0.22);
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-stat-grid {
    display: grid;
    gap: 1rem;
}

.hero-stat {
    background: rgba(255, 246, 236, 0.12);
    border: 1px solid rgba(255, 246, 236, 0.35);
    border-radius: 1.75rem;
    padding: 1.2rem;
    color: #fff6ec;
    box-shadow: 0 18px 38px rgba(43, 21, 13, 0.12);
}

.hero-stat-label {
    font-size: 0.68rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(255, 246, 236, 0.7);
}

.hero-stat-value {
    margin-top: 0.55rem;
    font-size: 1rem;
    line-height: 1.6;
}

.hero-showcase {
    position: relative;
    border-radius: 3rem;
    overflow: hidden;
    border: 1px solid rgba(255, 246, 236, 0.28);
    background: linear-gradient(145deg, rgba(255, 246, 236, 0.08), rgba(255, 210, 166, 0.18));
    min-height: 26rem;
}

.hero-showcase img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.05);
}

.hero-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff6ec;
    color: #2b150d;
    padding: 1rem 1.25rem;
    border-radius: 1.75rem;
    box-shadow: 0 24px 48px rgba(43, 21, 13, 0.25);
    border: 1px solid rgba(212, 154, 74, 0.25);
    max-width: 16rem;
}

.hero-card img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 1.25rem;
    box-shadow: 0 12px 20px rgba(43, 21, 13, 0.15);
}

.hero-card-title {
    font-weight: 600;
    font-size: 1rem;
}

.hero-card-sub {
    font-size: 0.8rem;
    color: rgba(43, 21, 13, 0.7);
}

.hero-card--dish {
    top: 12%;
    left: -12%;
}

.hero-card--dessert {
    bottom: -12%;
    right: -10%;
}

.hero-card--sheesha {
    bottom: 10%;
    left: 55%;
    transform: translateX(-50%);
    padding: 0.9rem 1.4rem;
}

.hero-card--sheesha .mdi {
    font-size: 1.6rem;
    color: #d49a4a;
}

@media (max-width: 1023px) {
    .hero-showcase {
        min-height: 22rem;
    }
    .hero-card--dish,
    .hero-card--dessert {
        position: relative;
        inset: auto;
        transform: none;
        margin-top: 1.5rem;
        max-width: 20rem;
    }
    .hero-card--sheesha {
        position: relative;
        inset: auto;
        transform: none;
        margin-top: 1.5rem;
    }
    .hero-showcase-wrapper {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
}
@media (min-width: 768px) {
    .nav-compact .nav-links {
        display: flex !important;
        gap: 1.5rem;
    }
}

@media (max-width: 767px) {
    .nav-compact .nav-inner {
        flex-direction: column;
        align-items: stretch;
        border-radius: 3rem;
    }
}

.pattern-border {
    position: relative;
}

.pattern-border::before,
.pattern-border::after {
    content: '';
    position: absolute;
    height: 4px;
    width: 64px;
    background: linear-gradient(90deg, rgba(183, 123, 47, 0), rgba(183, 123, 47, 0.85), rgba(183, 123, 47, 0));
    top: -12px;
    left: 8px;
}

.pattern-border::after {
    right: 8px;
    left: auto;
}
