*,
    *::before,
    *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        -webkit-tap-highlight-color: transparent;
    }

    html {
        -webkit-tap-highlight-color: transparent;
    }

    a, button, input, textarea, select, [role="button"] {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        outline: none;
    }

    :root {
        --white: #ffffff;
        --off-white: #fafaf8;
        --cream: #f5f1eb;
        --stone: #e8ddd0;
        --tan: #c9b8a0;
        --brown: #8b7d6d;
        --dark: #1a1410;
        --accent: #c89968;
        --accent2: #a87a3d;
        --gold: #d4af7f;
        --glass-bg: rgba(255, 255, 255, 0.5);
        --glass-border: rgba(255, 255, 255, 0.75);
        --glass-shadow: rgba(180, 160, 130, 0.12);
        --text-main: #1a1410;
        --text-muted: #6b5f52;
        --text-light: #9d8b7f;
        --blur: blur(16px);
        --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        --success: #10b981;
        --error: #ef4444;
    }

    body.dark-mode {
        --white: #1f1f1f93;
        --off-white: #232323;
        --cream: #252525;
        --stone: #333333;
        --tan: #555555;
        --brown: #888888;
        --dark: #f5f5f5;
        --glass-bg: rgba(36, 35, 35, 0.6);
        --glass-border: rgba(100, 100, 100, 0.3);
        --glass-shadow: rgba(97, 86, 86, 0.4);
        --text-main: #f5f5f5;
        --text-muted: #f8f8f8;
        --text-light: #999999;
    }

    html {
        scroll-behavior: smooth;
        overflow-x: hidden;
        width: 100%;
    }

    body {
        font-family: 'Inter', sans-serif;
        background: var(--off-white);
        color: var(--text-main);
        overflow-x: hidden;
        width: 100%;
        line-height: 1.6;
        transition: background var(--transition), color var(--transition);
        cursor: auto;
    }

    /* ── Scrollbar ── */
    ::-webkit-scrollbar {
        width: 6px;
    }

    ::-webkit-scrollbar-track {
        background: var(--cream);
    }

    ::-webkit-scrollbar-thumb {
        background: var(--accent);
        border-radius: 4px;
    }

    /* ── Progress Bar ── */
    .progress-bar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 150;
        height: 2px;
        background: linear-gradient(to right, var(--accent), var(--gold), var(--accent));
        background-size: 200% 100%;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.1s linear;
        animation: shimmer 3s linear infinite;
    }

    @keyframes shimmer {
        to {
            background-position: -200% 0;
        }
    }

    /* ══════════════════════
       NAVBAR
    ══════════════════════ */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 6%;
        height: 68px;
        background: rgba(15, 12, 10, 0.55);
        backdrop-filter: var(--blur);
        -webkit-backdrop-filter: var(--blur);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        transition: background 0.4s ease, box-shadow 0.4s ease;
    }

    nav.scrolled {
        background: rgba(20, 16, 12, 0.95);
        box-shadow: 0 4px 40px rgba(0, 0, 0, 0.35);
    }

    .nav-logo {
        font-family: 'Playfair Display', serif;
        font-size: 20px;
        font-weight: 700;
        color: #fff;
        letter-spacing: 0.5px;
        display: flex;
        align-items: center;
        gap: 6px;
        position: relative;
    }

    .nav-logo::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--accent);
        transition: width 0.5s ease;
    }

    .nav-logo:hover::after {
        width: 100%;
    }

    .nav-logo span {
        color: var(--accent);
        font-style: italic;
        font-weight: 500;
    }

    .nav-left {
        display: flex;
        align-items: center;
        gap: 50px;
    }

    .nav-links {
        display: flex;
        gap: 42px;
        list-style: none;
    }

    .nav-links a {
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 0.3px;
        color: rgba(255, 255, 255, 0.75);
        text-decoration: none;
        transition: color var(--transition);
        position: relative;
        padding-bottom: 4px;
        cursor: pointer;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 1.5px;
        background: var(--accent);
        transition: width 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .nav-links a:hover {
        color: var(--accent);
    }

    .nav-links a:hover::after {
        width: 100%;
    }

    .nav-right {
        display: flex;
        align-items: center;
        gap: 18px;
    }

    .nav-cta {
        background: var(--accent);
        color: white;
        border: none;
        padding: 10px 26px;
        font-family: 'Inter', sans-serif;
        font-size: 13px;
        font-weight: 600;
        border-radius: 50px;
        cursor: pointer;
        letter-spacing: 0.5px;
        transition: all var(--transition);
        box-shadow: 0 4px 16px rgba(200, 153, 104, 0.25);
        position: relative;
        overflow: hidden;
    }

    .nav-cta::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
        transform: scale(0);
        transition: transform 0.4s ease;
        border-radius: inherit;
    }

    .nav-cta:hover::before {
        transform: scale(2.5);
    }

    .nav-cta:hover {
        background: var(--accent2);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(200, 153, 104, 0.4);
    }

    .nav-cta:active {
        transform: translateY(0) scale(0.97);
    }

    .theme-toggle {
        background: none;
        border: none;
        cursor: pointer;
        font-size: 16px;
        color: rgba(255, 255, 255, 0.7);
        width: 34px;
        height: 34px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: all var(--transition);
        border-radius: 50%;
    }

    .theme-toggle:hover {
        color: var(--accent);
        background: rgba(200, 153, 104, 0.12);
        transform: rotate(20deg);
    }

    .nav-hamburger {
        display: none;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        cursor: pointer;
        padding: 12px;
    }

    .nav-hamburger span {
        display: block;
        width: 22px;
        height: 1.5px;
        background: #fff;
        border-radius: 2px;
        transition: var(--transition);
    }

    .nav-hamburger.open span:nth-child(1) {
        transform: translateY(6.5px) rotate(45deg);
    }

    .nav-hamburger.open span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .nav-hamburger.open span:nth-child(3) {
        transform: translateY(-6.5px) rotate(-45deg);
    }

    .mobile-menu {
        display: none;
        position: fixed;
        top: 68px;
        right: 0;
        left: 0;
        z-index: 99;
        background: rgba(15, 12, 10, 0.97);
        backdrop-filter: var(--blur);
        padding: 20px 6% 28px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        flex-direction: column;
        gap: 16px;
        transform: translateY(-10px);
        opacity: 0;
        transition: all 0.3s ease;
    }

    .mobile-menu.open {
        display: flex;
        animation: mobileSlide 0.3s ease forwards;
    }

    @keyframes mobileSlide {
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .mobile-menu a {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        font-weight: 500;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: color 0.3s, padding-left 0.3s;
        cursor: pointer;
    }

    .mobile-menu a:hover {
        color: var(--accent);
        padding-left: 8px;
    }

    /* ══════════════════════
       HERO
    ══════════════════════ */
    .hero {
        position: relative;
        width: 100%;
        height: 100vh;
        height: 100svh;
        min-height: 680px;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        background: #0f0c0a;
    }

    .hero-bg {
        position: absolute;
        inset: 0;
        background-image: url('photo/home.webp');
        background-size: cover;
        background-position: center left;
        transform: scale(1.06);
        transition: transform 10s ease;
        will-change: transform;
    }

    .hero-bg.loaded {
        transform: scale(1);
    }

    .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to right,
                rgba(10, 8, 6, 0.08) 0%,
                rgba(10, 8, 6, 0.45) 40%,
                rgba(10, 8, 6, 0.88) 65%,
                rgba(10, 8, 6, 0.96) 100%);
    }

    .hero-overlay-bottom {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 180px;
        background: linear-gradient(to top, rgba(10, 8, 6, 0.92) 0%, transparent 100%);
    }

    /* Floating particles */
    .hero-particles {
        position: absolute;
        inset: 0;
        pointer-events: none;
        overflow: hidden;
    }

    .particle {
        position: absolute;
        width: 3px;
        height: 3px;
        background: rgba(200, 153, 104, 0.4);
        border-radius: 50%;
        animation: floatUp linear infinite;
    }

    @keyframes floatUp {
        0% {
            transform: translateY(100vh) rotate(0deg);
            opacity: 0;
        }

        10% {
            opacity: 0.6;
        }

        90% {
            opacity: 0.2;
        }

        100% {
            transform: translateY(-100px) rotate(360deg);
            opacity: 0;
        }
    }

    .hero-body {
        flex: 1;
        display: flex;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    .hero-content {
        margin-left: auto;
        width: 52%;
        max-width: 680px;
        padding: 0 6% 0 4%;
        padding-top: 68px;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(200, 153, 104, 0.15);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(200, 153, 104, 0.35);
        border-radius: 50px;
        padding: 8px 18px;
        font-size: 11px;
        font-weight: 600;
        color: var(--gold);
        letter-spacing: 1.8px;
        text-transform: uppercase;
        margin-bottom: 28px;
          margin-left: 9%;
        animation: badgePop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
        transition: all 0.3s ease;
    }

    .hero-badge:hover {
        background: rgba(200, 153, 104, 0.25);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(200, 153, 104, 0.2);
    }

    @keyframes badgePop {
        from {
            opacity: 0;
            transform: translateY(-16px) scale(0.9);
        }

        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    .hero-title {
        font-family: 'Playfair Display', serif;
        font-size: clamp(42px, 5.5vw, 72px);
        font-weight: 700;
        line-height: 1.08;
        color: #fff;
        margin-bottom: 20px;
        animation: slideInRight 0.9s ease-out 0.15s both;
    }

    .hero-title .accent-line {
        display: block;
        color: var(--accent);
        font-style: italic;
        font-weight: 500;
        position: relative;
    }

    .hero-title .accent-line::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(to right, var(--accent), transparent);
        animation: lineGrow 1.2s ease-out 1.5s forwards;
    }

    @keyframes lineGrow {
        to {
            width: 100%;
        }
    }

    .typing-text {
        min-height: 1.15em;
    }

    .typing-text span {
        display: inline-block;
        color: var(--accent);
        font-style: italic;
    }

    .cursor-blink {
        display: inline-block;
        width: 3px;
        height: 0.9em;
        background: var(--accent);
        margin-left: 2px;
        vertical-align: middle;
        animation: blink 1s step-end infinite;
    }

    @keyframes blink {

        0%,
        100% {
            opacity: 1;
        }

        50% {
            opacity: 0;
        }
    }

    .hero-sub {
        font-size: 15px;
        color: rgba(255, 255, 255, 0.72);
        max-width: 420px;
        line-height: 1.8;
        margin-bottom: 38px;
        animation: slideInRight 0.9s ease-out 0.3s both;
    }

    .hero-actions {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
        align-items: center;
        animation: slideInRight 0.9s ease-out 0.45s both;
    }

    /* ── Buttons ── */
    .btn-primary {
        background: var(--accent);
        color: white;
        padding: 13px 30px;
        border-radius: 50px;
        border: none;
        font-family: 'Inter', sans-serif;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        letter-spacing: 0.5px;
        transition: all var(--transition);
        box-shadow: 0 6px 20px rgba(200, 153, 104, 0.35);
        display: flex;
        align-items: center;
        gap: 8px;
        position: relative;
        overflow: hidden;
    }

    .btn-primary::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.5s ease, height 0.5s ease, opacity 0.5s ease;
        opacity: 0;
    }

    .btn-primary:hover::before {
        width: 300px;
        height: 300px;
        opacity: 1;
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 32px rgba(200, 153, 104, 0.5);
        background: var(--accent2);
    }

    .btn-primary:active {
        transform: translateY(-1px) scale(0.98);
    }

    .btn-primary span,
    .btn-primary i {
        position: relative;
        z-index: 1;
    }

    .btn-outline {
        background: transparent;
        color: #fff;
        padding: 13px 30px;
        border-radius: 50px;
        border: 1.5px solid rgba(255, 255, 255, 0.35);
        font-family: 'Inter', sans-serif;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        transition: all var(--transition);
        display: flex;
        align-items: center;
        gap: 8px;
        position: relative;
        overflow: hidden;
    }

    .btn-outline::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(200, 153, 104, 0.08);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.35s ease;
    }

    .btn-outline:hover::before {
        transform: scaleX(1);
    }

    .btn-outline:hover {
        border-color: var(--accent);
        color: var(--accent);
        transform: translateY(-3px);
    }

    .btn-outline i {
        transition: transform 0.3s ease;
        position: relative;
        z-index: 1;
    }

    .btn-outline:hover i {
        transform: translateX(4px);
    }

    .btn-outline span {
        position: relative;
        z-index: 1;
    }



    /* ══════════════════════
       SECTIONS COMMON
    ══════════════════════ */
    section {
        padding: 88px 6%;
    }

    .section-label {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 3.2px;
        text-transform: uppercase;
        color: var(--accent);
        margin-bottom: 14px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .section-label::before {
        content: '';
        width: 24px;
        height: 1.5px;
        background: var(--accent);
        display: block;
        animation: expandLine 0.8s ease-out forwards;
    }

    @keyframes expandLine {
        from {
            width: 0;
        }

        to {
            width: 24px;
        }
    }

    .section-title {
        font-family: 'Playfair Display', serif;
        font-size: clamp(28px, 4vw, 48px);
        font-weight: 600;
        line-height: 1.2;
        color: var(--dark);
        margin-bottom: 14px;
    }

    .section-title em {
        font-style: italic;
        font-weight: 500;
        color: var(--accent);
    }

    .section-sub {
        font-size: 15px;
        color: var(--text-muted);
        font-weight: 400;
        max-width: 500px;
        line-height: 1.8;
    }

    .section-inner {
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
    }

    /* ══════════════════════
       MENU
    ══════════════════════ */
    #menu {
        background: var(--white);
    }

    .menu-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        gap: 32px;
        flex-wrap: wrap;
        margin-bottom: 48px;
    }

    .menu-tabs {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .menu-tab {
        padding: 9px 22px;
        border-radius: 50px;
        border: 1.5px solid var(--stone);
        background: transparent;
        color: var(--text-muted);
        font-family: 'Inter', sans-serif;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        transition: all var(--transition);
        position: relative;
        overflow: hidden;
    }

    .menu-tab::before {
        content: '';
        position: absolute;
        inset: 0;
        background: var(--accent);
        border-radius: inherit;
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.35s ease;
        z-index: 0;
    }

    .menu-tab:hover::before,
    .menu-tab.active::before {
        transform: scaleX(1);
    }

    .menu-tab span {
        position: relative;
        z-index: 1;
    }

    .menu-tab.active,
    .menu-tab:hover {
        color: white;
        border-color: var(--accent);
    }

    .menu-panel {
        display: none;
    }

    .menu-panel.active {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 20px;
    }

    .menu-card {
        background: var(--glass-bg);
        backdrop-filter: var(--blur);
        border: 1px solid var(--glass-border);
        border-radius: 16px;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: 0 4px 16px var(--glass-shadow);
        cursor: pointer;
        position: relative;
    }

    .menu-card::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 16px;
        border: 1.5px solid transparent;
        transition: border-color 0.3s ease;
        pointer-events: none;
    }

    .menu-card:hover::after {
        border-color: rgba(200, 153, 104, 0.4);
    }

    .menu-card:hover {
        transform: translateY(-8px) scale(1.01);
        box-shadow: 0 20px 48px rgba(180, 160, 130, 0.28);
    }

    .menu-card-img-wrap {
        overflow: hidden;
        height: 180px;
    }

    .menu-card-img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        display: block;
        background: var(--stone);
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .menu-card:hover .menu-card-img {
        transform: scale(1.1);
    }

    .menu-card-body {
        padding: 18px 20px 20px;
    }

    .menu-card-top {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 8px;
        gap: 12px;
    }

    .menu-card-name {
        font-family: 'Playfair Display', serif;
        font-size: 16px;
        font-weight: 600;
        color: var(--dark);
    }

    .menu-card-price {
        font-size: 15px;
        font-weight: 600;
        color: var(--accent);
        white-space: nowrap;
        transition: transform 0.3s ease;
    }

    .menu-card:hover .menu-card-price {
        transform: scale(1.1);
    }

    .menu-card-desc {
        font-size: 12px;
        color: var(--text-muted);
        line-height: 1.7;
        margin-bottom: 12px;
        font-weight: 400;
    }

    .menu-card-tag {
        display: inline-block;
        background: rgba(200, 153, 104, 0.12);
        color: var(--accent2);
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.8px;
        padding: 4px 11px;
        border-radius: 50px;
        text-transform: uppercase;
        transition: all 0.3s ease;
    }

    .menu-card:hover .menu-card-tag {
        background: rgba(200, 153, 104, 0.22);
    }

    /* ══════════════════════
       ABOUT
    ══════════════════════ */
    #about {
        background: var(--off-white);
    }

    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 72px;
        align-items: center;
    }

    .about-img-wrap {
        position: relative;
    }

    .about-img-real {
        width: 100%;
        aspect-ratio: 3.5/4;
        object-fit: cover;
        border-radius: 20px;
        display: block;
        transition: transform 0.6s ease;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    }

    .about-img-wrap:hover .about-img-real {
        transform: scale(1.02);
    }

    .about-img-wrap::before {
        content: '';
        position: absolute;
        inset: -10px;
        border: 1px solid rgba(200, 153, 104, 0.2);
        border-radius: 24px;
        transition: all 0.4s ease;
        z-index: -1;
    }

    .about-img-wrap:hover::before {
        inset: -16px;
        border-color: rgba(200, 153, 104, 0.4);
    }

    .about-float-card {
        position: absolute;
        bottom: -20px;
        left: -24px;
        background: var(--glass-bg);
        backdrop-filter: var(--blur);
        border: 1px solid var(--glass-border);
        border-radius: 16px;
        padding: 18px 22px;
        box-shadow: 0 10px 40px rgba(180, 160, 130, 0.2);
        min-width: 160px;
        transition: all 0.4s ease;
    }

    .about-float-card:hover {
        transform: translateY(-4px) scale(1.03);
        box-shadow: 0 16px 48px rgba(180, 160, 130, 0.3);
    }

    .about-float-num {
        font-family: 'Playfair Display', serif;
        font-size: 36px;
        font-weight: 700;
        color: var(--dark);
        line-height: 1;
    }

    .about-float-label {
        font-size: 11px;
        color: var(--dark);
        margin-top: 4px;
        font-weight: 500;
    }

    .about-features {
        display: flex;
        flex-direction: column;
        gap: 24px;
        margin-top: 36px;
    }

    .about-feature {
        display: flex;
        gap: 16px;
        align-items: flex-start;
        transition: all 0.35s ease;
    }

    .about-feature:hover {
        transform: translateX(6px);
    }

    .about-feature-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: rgba(200, 153, 104, 0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        color: var(--accent);
        flex-shrink: 0;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .about-feature:hover .about-feature-icon {
        background: rgba(200, 153, 104, 0.22);
        transform: rotate(-8deg) scale(1.1);
    }

    .about-feature-title {
        font-size: 13px;
        font-weight: 600;
        color: var(--dark);
        margin-bottom: 4px;
    }

    .about-feature-text {
        font-size: 13px;
        color: var(--text-muted);
        line-height: 1.7;
        font-weight: 400;
    }

    /* ══════════════════════
       TESTIMONIALS
    ══════════════════════ */
    #testimonials {
        background: var(--white);
    }

    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
        margin-top: 48px;
    }

    .testimonial-card {
        background: var(--glass-bg);
        backdrop-filter: var(--blur);
        border: 1px solid var(--glass-border);
        border-radius: 16px;
        padding: 28px;
        box-shadow: 0 4px 16px var(--glass-shadow);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    .testimonial-card::before {
        content: '"';
        position: absolute;
        top: -10px;
        right: 20px;
        font-family: 'Playfair Display', serif;
        font-size: 120px;
        font-style: italic;
        color: rgba(200, 153, 104, 0.06);
        line-height: 1;
        pointer-events: none;
        transition: color 0.4s ease;
    }

    .testimonial-card:hover::before {
        color: rgba(200, 153, 104, 0.1);
    }

    .testimonial-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(180, 160, 130, 0.24);
        border-color: rgba(200, 153, 104, 0.3);
    }

    .testimonial-stars {
        font-size: 13px;
        color: var(--accent);
        margin-bottom: 12px;
        letter-spacing: 2px;
    }

    .testimonial-text {
        font-size: 13px;
        color: var(--text-muted);
        line-height: 1.8;
        margin-bottom: 20px;
        font-weight: 400;
        font-style: italic;
        position: relative;
        z-index: 1;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 12px;
        position: relative;
        z-index: 1;
    }

    .testimonial-avatar {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: var(--accent);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        font-size: 13px;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }

    .testimonial-card:hover .testimonial-avatar {
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(200, 153, 104, 0.4);
    }

    .testimonial-name {
        font-size: 13px;
        font-weight: 600;
        color: var(--dark);
    }

    .testimonial-role {
        font-size: 11px;
        color: var(--text-light);
        font-weight: 400;
    }

    /* ══════════════════════
       RESERVATION
    ══════════════════════ */
    #reservation {
        background: var(--white);
    }

    .res-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 72px;
        align-items: start;
    }

    .res-info-list {
        display: flex;
        flex-direction: column;
        gap: 24px;
        margin-top: 36px;
    }

    .res-info-row {
        display: flex;
        gap: 16px;
        align-items: flex-start;
        transition: all var(--transition);
    }

    .res-info-row:hover {
        transform: translateX(6px);
    }

    .res-info-icon {
        width: 38px;
        height: 38px;
        flex-shrink: 0;
        background: rgba(200, 153, 104, 0.1);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        color: var(--accent);
        transition: all var(--transition);
    }

    .res-info-row:hover .res-info-icon {
        background: rgba(200, 153, 104, 0.22);
        transform: rotate(-6deg) scale(1.1);
    }

    .res-info-title {
        font-size: 12px;
        font-weight: 600;
        color: var(--dark);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .res-info-val {
        font-size: 13px;
        color: var(--text-muted);
        font-weight: 400;
        margin-top: 3px;
        line-height: 1.6;
    }

    /* ── Form ── */
    .res-form-wrap {
        background: var(--glass-bg);
        backdrop-filter: var(--blur);
        border: 1px solid var(--glass-border);
        border-radius: 20px;
        padding: 36px;
        box-shadow: 0 8px 32px var(--glass-shadow);
        transition: box-shadow 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    .res-form-wrap::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(to right, transparent, var(--accent), transparent);
        transform: scaleX(0);
        transition: transform 0.6s ease;
    }

    .res-form-wrap:focus-within::before {
        transform: scaleX(1);
    }

    .res-form-wrap:focus-within {
        box-shadow: 0 12px 48px rgba(200, 153, 104, 0.18);
    }

    .res-form-title {
        font-family: 'Playfair Display', serif;
        font-size: 20px;
        font-weight: 600;
        color: var(--dark);
        margin-bottom: 24px;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .form-field {
        display: flex;
        flex-direction: column;
        gap: 6px;
        margin-bottom: 14px;
    }

    .form-field label {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--text-muted);
        transition: color 0.3s ease;
    }

    .form-field:focus-within label {
        color: var(--accent);
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
        background: rgba(255, 255, 255, 0.8);
        border: 1.5px solid var(--stone);
        border-radius: 10px;
        padding: 12px 14px;
        font-family: 'Inter', sans-serif;
        font-size: 13px;
        font-weight: 400;
        color: var(--text-main);
        outline: none;
        transition: all 0.3s ease;
        -webkit-appearance: none;
        appearance: none;
        cursor: text;
    }

    .form-field select {
        cursor: pointer;
    }

    .dark-mode .form-field input,
    .dark-mode .form-field select,
    .dark-mode .form-field textarea {
        background: rgba(50, 50, 50, 0.8);
        border-color: var(--stone);
        color: #fff;
    }

    .form-field input:focus,
    .form-field select:focus,
    .form-field textarea:focus {
        border-color: var(--accent);
        box-shadow: 0 0 0 3px rgba(200, 153, 104, 0.12);
        background: rgba(255, 255, 255, 0.98);
        transform: translateY(-1px);
    }

    .form-field input::placeholder,
    .form-field textarea::placeholder {
        color: var(--tan);
    }

    .form-field select option {
        background: white;
        color: var(--dark);
    }

    .dark-mode .form-field select option {
        background: #333;
        color: #fff;
    }

    .form-field textarea {
        resize: vertical;
        min-height: 90px;
    }

    /* Input border animation */
    .form-field {
        position: relative;
    }

    .form-field::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 14px;
        right: 14px;
        height: 2px;
        background: var(--accent);
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.3s ease;
        border-radius: 0 0 10px 10px;
        pointer-events: none;
    }

    .form-field:focus-within::after {
        transform: scaleX(1);
    }

    .form-submit {
        width: 100%;
        background: var(--accent);
        color: white;
        border: none;
        border-radius: 50px;
        padding: 15px;
        font-family: 'Inter', sans-serif;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.8px;
        cursor: pointer;
        transition: all var(--transition);
        margin-top: 8px;
        box-shadow: 0 6px 20px rgba(200, 153, 104, 0.28);
        position: relative;
        overflow: hidden;
    }

    .form-submit::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .form-submit:hover::before {
        left: 100%;
    }

    .form-submit:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 32px rgba(200, 153, 104, 0.4);
        background: var(--accent2);
    }

    .form-submit:active {
        transform: translateY(-1px) scale(0.99);
    }

    .form-submit span {
        position: relative;
        z-index: 1;
    }

    /* Submit Loading */
    .form-submit.loading {
        pointer-events: none;
        opacity: 0.8;
    }

    .form-submit.loading span::after {
        content: '...';
        animation: dots 1.5s steps(4, end) infinite;
    }

    @keyframes dots {

        0%,
        20% {
            content: '.';
        }

        40% {
            content: '..';
        }

        60%,
        80% {
            content: '...';
        }

        100% {
            content: '';
        }
    }

    .form-feedback {
        padding: 12px 14px;
        border-radius: 10px;
        margin-top: 12px;
        display: none;
        align-items: center;
        gap: 10px;
        font-size: 13px;
        font-weight: 500;
    }

    .form-feedback.show {
        display: flex;
        animation: feedbackPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    @keyframes feedbackPop {
        from {
            opacity: 0;
            transform: scale(0.95) translateY(8px);
        }

        to {
            opacity: 1;
            transform: scale(1) translateY(0);
        }
    }

    .form-feedback.success {
        background: rgba(16, 185, 129, 0.1);
        color: var(--success);
        border: 1px solid var(--success);
    }

    .form-feedback.error {
        background: rgba(239, 68, 68, 0.1);
        color: var(--error);
        border: 1px solid var(--error);
    }

    /* ── Floating Button ── */
    .floating-btn {
        position: fixed;
        bottom: 28px;
        right: 28px;
        z-index: 80;
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: var(--accent);
        color: white;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        box-shadow: 0 6px 20px rgba(200, 153, 104, 0.35);
        transition: all var(--transition);
    }

    .floating-btn:hover {
        transform: translateY(-4px) rotate(15deg) scale(1.1);
        box-shadow: 0 12px 32px rgba(200, 153, 104, 0.5);
    }

    .floating-btn::before {
        content: '';
        position: absolute;
        inset: -4px;
        border-radius: 50%;
        border: 2px solid rgba(200, 153, 104, 0.4);
        animation: ringPulse 2s ease-in-out infinite;
    }

    .floating-btn::after {
        content: '';
        position: absolute;
        inset: -8px;
        border-radius: 50%;
        border: 1px solid rgba(200, 153, 104, 0.2);
        animation: ringPulse 2s ease-in-out 0.5s infinite;
    }

    @keyframes ringPulse {

        0%,
        100% {
            transform: scale(1);
            opacity: 0.8;
        }

        50% {
            transform: scale(1.12);
            opacity: 0.3;
        }
    }

    /* ── Footer ── */
    footer {
        background: var(--dark);
        color: rgba(255, 255, 255, 0.6);
        padding: 60px 6% 28px;
        transition: background var(--transition), color var(--transition);
    }

    .dark-mode footer {
        background: #0a0a0a;
    }

    .footer-inner {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-top {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 56px;
        margin-bottom: 44px;
    }

    .footer-logo {
        font-family: 'Playfair Display', serif;
        font-size: 20px;
        font-weight: 700;
        color: white;
        margin-bottom: 10px;
    }

    .footer-logo span {
        color: var(--accent);
        font-style: italic;
        font-weight: 500;
    }

    .footer-desc {
        font-size: 12px;
        line-height: 1.8;
        font-weight: 400;
        max-width: 260px;
    }

    .footer-col-title {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 2.2px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.35);
        margin-bottom: 18px;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .footer-links a {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.5);
        text-decoration: none;
        font-weight: 400;
        transition: all var(--transition);
        position: relative;
        display: inline-block;
        cursor: pointer;
    }

    .footer-links a::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--accent);
        transition: width 0.3s ease;
    }

    .footer-links a:hover {
        color: var(--accent);
    }

    .footer-links a:hover::after {
        width: 100%;
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .footer-copy {
        font-size: 11px;
    }

    .footer-social {
        display: flex;
        gap: 12px;
    }

    .footer-social a {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.4);
        text-decoration: none;
        font-size: 12px;
        transition: all var(--transition);
        cursor: pointer;
    }

    .footer-social a:hover {
        border-color: var(--accent);
        color: var(--accent);
        transform: translateY(-3px) scale(1.1);
        box-shadow: 0 6px 16px rgba(200, 153, 104, 0.25);
    }

    /* ── Scroll Reveal ── */
    [data-reveal] {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    [data-reveal="left"] {
        transform: translateX(-40px);
    }

    [data-reveal="right"] {
        transform: translateX(40px);
    }

    [data-reveal="scale"] {
        transform: scale(0.92);
    }

    [data-reveal].revealed {
        opacity: 1;
        transform: none;
    }

    /* ── Animations ── */
    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes slideInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    /* ── Responsive ── */
    @media (max-width: 900px) {

        .nav-links,
        .nav-cta {
            display: none;
        }

        .nav-hamburger {
            display: flex;
        }

        .hero-content {
            width: 100%;
            margin: 0;
            padding: 68px 6% 0;
        }

        .hero-badge {
            margin-left: 0;
            margin-top: -6%;
        }

        .hero-overlay {
            background: rgba(10, 8, 6, 0.6);
        }

        .hero-bg {
            background-position: 30% center;
        }

        .about-grid,
        .res-grid {
            grid-template-columns: 1fr;
            gap: 48px;
        }

        .about-float-card {
            right: 0;
            left: auto;
            bottom: -16px;
        }

        .footer-top {
            grid-template-columns: 1fr 1fr;
        }

        .menu-header {
            flex-direction: column;
            align-items: flex-start;
        }

        section {
            padding: 68px 6%;
        }
    }

    @media (max-width: 600px) {
        section {
            padding: 60px 6%;
        }

        .hero {
            min-height: 600px;
        }

        .hero-badge {
            margin-top: -10%;
        }

        .hero-bg {
            background-position: 22% center;
        }

        .nav-logo {
            font-size: 18px;
        }

        .hero-title {
            font-size: clamp(32px, 5vw, 48px);
        }

        .hero-sub {
            font-size: 14px;
        }

        .hero-actions {
            flex-direction: column;
            width: 100%;
        }

        .btn-primary,
        .btn-outline {
            width: 100%;
            justify-content: center;
        }

        .about-grid,
        .res-grid {
            grid-template-columns: 1fr;
            gap: 36px;
        }

        .form-row {
            grid-template-columns: 1fr;
        }

        /* منع الزووم التلقائي في سفاري آيفون عند فتح الكيبورد (أي خط أصغر من 16px بيخلي الصفحة تزوم) */
        .form-field input,
        .form-field select,
        .form-field textarea {
            font-size: 16px;
        }

        .footer-top {
            grid-template-columns: 1fr;
            gap: 32px;
        }

        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 16px;
        }

        .res-form-wrap {
            padding: 24px 18px;
        }

        .testimonials-grid {
            grid-template-columns: 1fr;
        }

        .menu-tabs {
            justify-content: flex-start;
            overflow-x: auto;
            padding-bottom: 8px;
            -webkit-overflow-scrolling: touch;
        }

        .menu-panel.active {
            grid-template-columns: 1fr;
        }

        .section-title {
            font-size: clamp(24px, 6vw, 36px);
        }

        .floating-btn {
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            font-size: 18px;
        }
    }

    @media (max-width: 480px) {
        section {
            padding: 48px 4%;
        }

        .hero-content {
            padding: 68px 4% 0;
        }

        .hero-badge {
            font-size: 10px;
            padding: 6px 14px;
        }

        .hero-actions {
            gap: 8px;
        }

        .nav-logo {
            font-size: 16px;
        }

        .menu-header {
            gap: 16px;
        }

        .section-title {
            font-size: clamp(20px, 5vw, 32px);
        }

        .menu-card {
            border-radius: 12px;
        }

        .form-field {
            margin-bottom: 10px;
        }

        .res-info-list {
            gap: 18px;
        }

        .footer-top {
            gap: 24px;
        }

        .stat-num {
            font-size: clamp(14px, 1.8vw, 20px);
        }
    }
