:root {
    --primary: #5f1a23;
    --primary-dark: #3f0f16;
    --secondary: #6e232c;
    --accent: #b0893f;
    --accent-soft: #efe0c2;
    --accent-dark: #8f6d2f;
    --light: #efe6d7;
    --light-2: #faf6ee;
    --white: #ffffff;
    --cream: #f6f1e8;
    --gray: #5a5044;
    --gray-light: #dcd2c2;
    --text: #2b221c;
    --text-light: #5f5246;
    --text-on-dark: rgba(255, 255, 255, 0.88);
    --text-faint: #8a7a68;
    --shadow: 0 3px 14px rgba(47, 17, 22, 0.08);
    --shadow-hover: 0 12px 32px rgba(47, 17, 22, 0.14);
    --shadow-gold: 0 6px 22px rgba(176, 137, 63, 0.28);
    --transition: all 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --radius: 12px;
    --radius-sm: 9px;
    --gold-gradient: linear-gradient(135deg, #c39d52 0%, #a8813a 55%, #b68f44 100%);
    --red-gradient: linear-gradient(150deg, #6e232c 0%, #4a141c 55%, #3f0f16 100%);
    --hairline: 1px solid rgba(47, 17, 22, 0.10);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--cream);
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo, .section-title,
.hero h1, .page-header h1, .menu-item-name,
.menu-category-title, .value-card h3, .review-name,
.banquet-feature h3, .contact-card h3,
.menu-card-title, .cart-header h3 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--primary);
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Preloader ===== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--white);
    letter-spacing: 4px;
    animation: preloaderPulse 1.6s infinite;
}

.preloader-logo span {
    color: var(--accent);
}

.preloader-bar {
    width: 140px;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    overflow: hidden;
}

.preloader-bar::after {
    content: '';
    display: block;
    width: 40%;
    height: 100%;
    background: var(--accent);
    border-radius: 10px;
    animation: preloaderSlide 1.2s infinite var(--ease-out);
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes preloaderSlide {
    0% { transform: translateX(-120%); }
    100% { transform: translateX(300%); }
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 245, 235, 0.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(95, 26, 35, 0.08);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 6px 30px rgba(63, 15, 22, 0.10);
    background: rgba(250, 245, 235, 0.97);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    background: var(--red-gradient);
    padding: 9px 20px;
    border-radius: 10px;
    letter-spacing: 1px;
    font-family: 'Playfair Display', Georgia, serif;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.logo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.4s;
}

.logo:hover::before {
    opacity: 1;
}

.logo > span:not(.logo-accent), .logo-accent {
    position: relative;
    z-index: 1;
}

.logo-accent {
    color: var(--accent);
    transition: color 0.4s;
}

.logo:hover > .logo-accent {
    color: var(--primary);
}

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

.nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
    position: relative;
    padding: 4px 0;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    border-radius: 2px;
    transition: width 0.3s var(--ease-out);
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.nav a:hover {
    color: var(--primary);
}

.header-contacts {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-phone {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.header-phone:hover {
    color: var(--accent-dark);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold-gradient);
    background-size: 200% 200%;
    color: var(--primary-dark);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background-position: 100% 100%;
    transform: translateY(-3px);
    box-shadow: 0 12px 34px rgba(176, 137, 63, 0.45);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-white {
    background: var(--white);
    color: var(--primary-dark);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.btn-white:hover {
    background: var(--accent-soft);
    transform: translateY(-3px);
}

/* ===== Mobile menu / burger ===== */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
    background: none;
    border: none;
}

.burger span {
    width: 26px;
    height: 2.5px;
    background: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
}

.burger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ===== Hero ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--red-gradient);
    color: var(--white);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(176, 137, 63, 0.12), transparent 62%);
    animation: heroGlow 12s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -15%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.28), transparent 65%);
}

@keyframes heroGlow {
    0% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    100% { transform: translate(4%, 3%) scale(1.08); opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(176, 137, 63, 0.16);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(176, 137, 63, 0.45);
    padding: 9px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--white);
    margin-bottom: 28px;
    font-weight: 500;
    opacity: 0;
    animation: fadeUp 0.8s 0.1s var(--ease-out) forwards;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 600;
    line-height: 1.08;
    margin-bottom: 22px;
    letter-spacing: -0.02em;
    opacity: 0;
    animation: fadeUp 0.9s 0.25s var(--ease-out) forwards;
}

.hero h1 span {
    color: var(--white);
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-on-dark);
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.75;
    opacity: 0;
    animation: fadeUp 0.9s 0.4s var(--ease-out) forwards;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.9s 0.55s var(--ease-out) forwards;
}

.hero-stats {
    display: flex;
    gap: 56px;
    margin-top: 60px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    opacity: 0;
    animation: fadeUp 0.9s 0.7s var(--ease-out) forwards;
}

.hero-stat {
    position: relative;
}

.hero-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -28px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

.hero-stat h3 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.hero-stat p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.78rem;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== Sections ===== */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent-dark);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 14px;
    position: relative;
}

.section-label::before,
.section-label::after {
    content: '';
    display: inline-block;
    width: 26px;
    height: 1px;
    background: var(--gold-gradient);
    vertical-align: middle;
    margin: 0 12px;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.18;
}

.section-subtitle {
    font-size: 1.06rem;
    color: var(--text-light);
    max-width: 620px;
    margin: 0 auto;
}

/* ===== About preview ===== */
.about-preview {
    background: var(--light-2);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    /* decorative gold frame offset behind image */
}

.about-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.about-image:hover img {
    transform: scale(1.04);
}

.about-image-badge {
    position: absolute;
    bottom: 22px;
    left: 22px;
    background: rgba(95, 26, 35, 0.9);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(176, 137, 63, 0.5);
    color: var(--white);
    padding: 12px 22px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1.05rem;
}

.about-content h2 {
    font-size: 2.1rem;
    margin-bottom: 22px;
    color: var(--primary);
    line-height: 1.2;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.85;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--white);
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.9rem;
    border: 1px solid rgba(95, 26, 35, 0.06);
    transition: var(--transition);
}

.about-feature:hover {
    transform: translateX(6px);
    border-color: rgba(176, 137, 63, 0.4);
    box-shadow: var(--shadow);
}

.about-feature-icon {
    width: 38px;
    height: 38px;
    background: rgba(95, 26, 35, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-dark);
    font-size: 1.15rem;
    flex-shrink: 0;
}

/* ===== Menu preview ===== */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.menu-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
    position: relative;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.menu-card-image {
    height: 230px;
    overflow: hidden;
    position: relative;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out);
}

.menu-card:hover .menu-card-image img {
    transform: scale(1.08);
}

.menu-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(63, 15, 22, 0.35), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.menu-card:hover .menu-card-image::after {
    opacity: 1;
}

.menu-card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold-gradient);
    color: var(--primary-dark);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-gold);
    z-index: 2;
}

.menu-card-content {
    padding: 24px;
}

.menu-card-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary);
}

.menu-card-desc {
    font-size: 0.87rem;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.6;
}

.menu-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-card-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.menu-card-price::after {
    content: ' ₽';
    color: var(--accent-dark);
}

.btn-add-cart {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--red-gradient);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1.3rem;
    box-shadow: var(--shadow);
}

.btn-add-cart:hover {
    background: var(--gold-gradient);
    color: var(--primary-dark);
    transform: scale(1.15) rotate(90deg);
    box-shadow: var(--shadow-gold);
}

.btn-add-cart:active {
    transform: scale(0.95);
}

/* ===== Reviews ===== */
.reviews-section {
    background: var(--red-gradient);
    color: var(--white);
}

.reviews-section .section-title {
    color: var(--white);
}

.reviews-section .section-subtitle {
    color: rgba(255, 255, 255, 0.65);
}

.reviews-section .section-label {
    color: var(--white);
}

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

.review-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 34px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    right: 16px;
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    color: rgba(176, 137, 63, 0.15);
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(176, 137, 63, 0.3);
}

.review-stars {
    color: var(--accent);
    font-size: 1.05rem;
    margin-bottom: 18px;
    letter-spacing: 3px;
    text-shadow: 0 0 12px rgba(176, 137, 63, 0.5);
}

.review-text {
    font-size: 0.97rem;
    line-height: 1.7;
    color: var(--text-on-dark);
    margin-bottom: 22px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.15);
}

.review-name {
    font-weight: 600;
    font-size: 0.97rem;
}

.review-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== Gallery ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 260px);
    gap: 18px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.gallery-item:hover img {
    transform: scale(1.1) rotate(1deg);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(63, 15, 22, 0.4), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-item::before {
    content: '＋';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: var(--white);
    font-size: 2rem;
    z-index: 2;
    transition: transform 0.35s var(--ease-out);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

/* ===== CTA ===== */
.cta {
    background: var(--gold-gradient);
    color: var(--primary-dark);
    text-align: center;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.3), transparent 50%);
}

.cta > .container {
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}

.cta p {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 34px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Footer ===== */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 70px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 44px;
    margin-bottom: 48px;
}

.footer-about .logo {
    color: var(--white);
    margin-bottom: 18px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.92rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 22px;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 11px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.92rem;
    transition: var(--transition);
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* ===== Page header ===== */
.page-header {
    background: var(--red-gradient);
    padding: 170px 0 90px;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(176, 137, 63, 0.15), transparent 60%);
}

.page-header > .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 18px;
    animation: fadeUp 0.8s var(--ease-out);
}

.page-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeUp 0.8s 0.15s var(--ease-out) backwards;
}

/* ===== Menu page ===== */
.menu-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 52px;
    flex-wrap: wrap;
}

.menu-filter {
    padding: 11px 26px;
    border-radius: 50px;
    border: 2px solid var(--gray-light);
    background: var(--white);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    color: var(--text);
}

.menu-filter:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.menu-filter.active {
    border-color: var(--accent);
    background: var(--gold-gradient);
    color: var(--primary-dark);
    border-color: transparent;
    box-shadow: var(--shadow-gold);
}

.menu-category {
    margin-bottom: 60px;
}

.menu-category-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--gold-gradient);
    display: inline-block;
    color: var(--primary);
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 22px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 18px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.menu-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(176, 137, 63, 0.3);
}

.menu-item-image {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.06);
}

.menu-item-info {
    flex: 1;
}

.menu-item-name {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--primary);
}

.menu-item-desc {
    font-size: 0.86rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.menu-item-price {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

/* ===== Cart sidebar ===== */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(63, 15, 22, 0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 90vw;
    height: 100vh;
    background: var(--light-2);
    z-index: 2001;
    transition: right 0.45s var(--ease-out);
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 40px rgba(63, 15, 22, 0.25);
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 26px;
    background: var(--red-gradient);
    color: var(--white);
}

.cart-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
}

.cart-close {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    cursor: pointer;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cart-close:hover {
    background: var(--accent);
    color: var(--primary-dark);
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 18px 26px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(95, 26, 35, 0.1);
}

.cart-item-image {
    width: 62px;
    height: 62px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--gold-gradient);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    font-size: 0.92rem;
    margin-bottom: 4px;
    color: var(--primary);
}

.cart-item-price {
    color: var(--accent-dark);
    font-weight: 700;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-item-qty button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--gray-light);
    background: var(--white);
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cart-item-qty button:hover {
    border-color: var(--accent);
    color: var(--accent-dark);
    background: var(--accent-soft);
}

.cart-item-qty span {
    font-weight: 600;
    min-width: 22px;
    text-align: center;
    color: var(--primary);
}

.cart-footer {
    padding: 22px 26px;
    border-top: 1px solid rgba(95, 26, 35, 0.1);
    background: var(--white);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.cart-total span:last-child {
    color: var(--accent-dark);
}

.cart-empty {
    text-align: center;
    padding: 70px 24px;
    color: var(--text-light);
}

.cart-empty-icon {
    font-size: 3.2rem;
    margin-bottom: 16px;
    opacity: 0.5;
}

/* ===== Cart badge ===== */
.cart-btn {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--red-gradient);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    display: none;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--cream);
    box-shadow: 0 3px 8px rgba(63, 15, 22, 0.3);
}

.cart-badge.active {
    display: flex;
    animation: badgePop 0.4s var(--ease-out);
}

@keyframes badgePop {
    0% { transform: scale(0); }
    70% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* ===== Booking form ===== */
.booking-form {
    max-width: 720px;
    margin: 0 auto;
    background: var(--white);
    padding: 52px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    border: 1px solid rgba(95, 26, 35, 0.06);
    position: relative;
    overflow: hidden;
}

.booking-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.92rem;
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--light-2);
    color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(176, 137, 63, 0.15);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(176, 137, 63, 0.6);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group input.form-error,
.form-group select.form-error {
    border-color: #d32f2f;
    background: #fff5f5;
    animation: shake 0.35s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-6px); }
    75% { transform: translateX(6px); }
}

/* ===== Contacts ===== */
.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    border: 1px solid rgba(95, 26, 35, 0.05);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.contact-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--primary);
}

.contact-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--red-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
    border: 1px solid rgba(95, 26, 35, 0.08);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== About page ===== */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-hero-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    position: relative;
}

.about-hero-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.about-hero-image:hover img {
    transform: scale(1.03);
}

.about-hero-content h2 {
    font-size: 2.3rem;
    margin-bottom: 22px;
    color: var(--primary);
    line-height: 1.2;
}

.about-hero-content p {
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 16px;
}

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

.value-card {
    text-align: center;
    padding: 44px 28px;
    background: var(--white);
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid rgba(95, 26, 35, 0.05);
    box-shadow: var(--shadow);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(176, 137, 63, 0.16), rgba(95, 26, 35, 0.05));
    border: 1px solid rgba(176, 137, 63, 0.28);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent-dark);
    font-size: 1.55rem;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    border-color: rgba(176, 137, 63, 0.5);
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(176, 137, 63, 0.24), rgba(95, 26, 35, 0.06));
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.value-card p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ===== Banquets ===== */
.banquet-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.banquet-feature {
    text-align: center;
    padding: 44px 28px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(95, 26, 35, 0.05);
}

.banquet-feature:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.banquet-feature-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(176, 137, 63, 0.16), transparent);
    border: 1px solid rgba(176, 137, 63, 0.24);
    border-radius: 16px;
    color: var(--accent-dark);
    font-size: 1.8rem;
}

.banquet-feature h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.banquet-feature p {
    color: var(--text-light);
    font-size: 0.92rem;
}

/* ===== Scroll-triggered animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    will-change: opacity, transform;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.fade-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* stagger children */
.stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}

.stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.15s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.25s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.35s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.45s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.55s; }

/* ===== Scroll-to-top button ===== */
.scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--red-gradient);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1.4rem;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-hover);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--gold-gradient);
    color: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

/* ===== Floating call button (mobile) ===== */
.call-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--primary-dark);
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 999;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
    text-decoration: none;
}

.call-float:hover {
    transform: scale(1.1);
}

/* ===== Success message ===== */
.success-message {
    display: none;
    text-align: center;
    padding: 60px 24px;
}

.success-message.show {
    display: block;
    animation: fadeUp 0.5s var(--ease-out);
}

.success-icon {
    width: 84px;
    height: 84px;
    background: linear-gradient(135deg, rgba(176, 137, 63, 0.25), rgba(176, 137, 63, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2.2rem;
    color: #4caf50;
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.15);
}

.success-message h2 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.success-message p {
    color: var(--text-light);
}
