/* ===== CSS VARIABLES ===== */
:root {
    --ink: #14110E;
    --ink-2: #1B1712;
    --gold: #C6A15B;
    --gold-light: #E0C58A;
    --gold-dark: #A67F3E;
    --cream: #F5EFE6;
    --cream-2: #EDE4D6;
    --wine: #7B2D3B;
    --wine-light: #9A3B4C;
    --bg: #FDFBF7;
    --surface: #FFFFFF;
    --white: #FFFFFF;
    --text: #4A4139;
    --muted: #8C8073;
    --muted-light: #B7AC9C;
    --line: #E7DECF;
    --line-strong: #DACDB8;
    --dark-panel: #1B1712;
    --dark-panel-2: #14110E;
    --shadow-sm: 0 2px 14px rgba(20, 17, 14, 0.06);
    --shadow-md: 0 16px 40px rgba(20, 17, 14, 0.10);
    --shadow-lg: 0 28px 64px rgba(20, 17, 14, 0.16);
    --shadow-xl: 0 40px 90px rgba(20, 17, 14, 0.24);
    --shadow-gold: 0 14px 34px rgba(198, 161, 91, 0.34);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --radius-xl: 30px;
    --transition: 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
    font-family: 'Jost', sans-serif;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    line-height: 1.75;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--ink);
    line-height: 1.14;
    font-weight: 600;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed; inset: 0; background: var(--ink); z-index: 10000;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s, visibility 0.6s;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-mark {
    font-size: 2.4rem; margin-bottom: 12px; color: var(--gold);
    animation: markPulse 1.3s ease-in-out infinite;
}
@keyframes markPulse {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.55; }
    50% { transform: scale(1.18) rotate(90deg); opacity: 1; }
}
.preloader-text {
    font-family: 'Cormorant Garamond', serif; font-weight: 600;
    font-size: 1.9rem; letter-spacing: 3px; color: var(--cream); text-transform: uppercase;
}
.preloader-text span { color: var(--gold); }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 24px 0; transition: all var(--transition);
}
.navbar.scrolled {
    background: rgba(20, 17, 14, 0.88); backdrop-filter: blur(18px);
    padding: 14px 0; box-shadow: 0 8px 30px rgba(0,0,0,0.28);
    border-bottom: 1px solid rgba(198, 161, 91, 0.22);
}
.nav-container {
    max-width: 1240px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    display: flex; align-items: center; justify-content: center;
    color: var(--ink); font-size: 1.15rem; box-shadow: var(--shadow-gold);
}
.logo-text {
    font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 1.65rem;
    letter-spacing: 2px; color: var(--cream); text-transform: uppercase;
}
.logo-text span { color: var(--gold); }
.nav-links { display: flex; list-style: none; gap: 34px; }
.nav-links a {
    font-size: 0.82rem; font-weight: 400; color: rgba(245, 239, 230, 0.82);
    letter-spacing: 1.4px; text-transform: uppercase; transition: color var(--transition); position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -7px; left: 0; width: 0; height: 1px;
    background: var(--gold); transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
    padding: 11px 28px; background: transparent; color: var(--gold-light) !important;
    border: 1px solid var(--gold); border-radius: 50px; font-size: 0.78rem; font-weight: 500;
    letter-spacing: 1.4px; text-transform: uppercase; transition: all var(--transition);
}
.nav-cta:hover { background: var(--gold); color: var(--ink) !important; transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.hamburger span { width: 26px; height: 2px; background: var(--cream); transition: all 0.3s; border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 15px 36px; border-radius: 50px; font-family: 'Jost', sans-serif;
    font-size: 0.8rem; font-weight: 500; letter-spacing: 1.6px; text-transform: uppercase; cursor: pointer;
    transition: all var(--transition); border: none; white-space: nowrap;
}
.btn-primary { background: linear-gradient(135deg, var(--gold-light), var(--gold-dark)); color: var(--ink); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold); filter: brightness(1.05); }
.btn-accent { background: var(--wine); color: var(--cream); }
.btn-accent:hover { background: var(--wine-light); transform: translateY(-3px); box-shadow: 0 14px 34px rgba(123, 45, 59, 0.34); }
.btn-outline { background: transparent; color: var(--cream); border: 1px solid rgba(245, 239, 230, 0.5); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-3px); }
.btn-white { background: var(--cream); color: var(--ink); }
.btn-white:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-full { width: 100%; }

/* ===== SECTION STYLES ===== */
.section-tag {
    display: inline-flex; align-items: center; gap: 7px; padding: 6px 20px;
    border: 1px solid var(--line-strong); border-radius: 50px; font-size: 0.68rem;
    font-weight: 500; letter-spacing: 2.4px; text-transform: uppercase;
    color: var(--gold-dark); margin-bottom: 20px; background: rgba(198, 161, 91, 0.06);
}
.section-tag.accent { border-color: rgba(123,45,59,0.3); color: var(--wine); background: rgba(123,45,59,0.05); }
.section-tag.light { border-color: rgba(245,239,230,0.28); color: var(--gold-light); background: rgba(245,239,230,0.06); }
.section-header { text-align: center; margin-bottom: 62px; max-width: 660px; margin-left: auto; margin-right: auto; }
.section-title {
    font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 600;
    letter-spacing: 0.3px; margin-bottom: 18px;
}
.section-title em { color: var(--gold-dark); font-style: italic; font-weight: 500; }
.section-desc { font-size: 1.05rem; color: var(--muted); max-width: 580px; margin: 0 auto; font-weight: 300; }

/* ===== HERO ===== */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    padding: 150px 0 120px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(180deg, rgba(20,17,14,0.72) 0%, rgba(20,17,14,0.55) 45%, rgba(20,17,14,0.82) 100%),
        radial-gradient(ellipse at 70% 30%, rgba(198,161,91,0.14) 0%, transparent 55%);
}
.hero .container { position: relative; z-index: 2; }
.hero-inner { max-width: 720px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 9px; padding: 8px 22px;
    background: rgba(245,239,230,0.08); border: 1px solid rgba(198,161,91,0.35); border-radius: 50px;
    font-size: 0.74rem; font-weight: 400; letter-spacing: 1.4px; text-transform: uppercase;
    color: var(--cream); margin-bottom: 30px; backdrop-filter: blur(6px);
    animation: fadeInUp 0.9s ease-out;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(198,161,91,0.22); }
.hero-title {
    font-size: clamp(3rem, 6.6vw, 5.4rem); font-weight: 600; letter-spacing: 0.5px;
    line-height: 1.06; color: var(--cream); margin-bottom: 26px; animation: fadeInUp 0.9s ease-out 0.15s both;
}
.hero-title em { color: var(--gold-light); font-style: italic; font-weight: 500; }
.hero-subtitle {
    font-size: 1.18rem; color: rgba(245,239,230,0.85); max-width: 560px; margin-bottom: 40px;
    font-weight: 300; animation: fadeInUp 0.9s ease-out 0.3s both;
}
.hero-buttons { display: flex; gap: 16px; margin-bottom: 56px; animation: fadeInUp 0.9s ease-out 0.45s both; }
.hero-stats { display: flex; align-items: center; gap: 34px; animation: fadeInUp 0.9s ease-out 0.6s both; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat .stat-number, .hero-stat .stat-suffix {
    font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 600; color: var(--gold-light); line-height: 1;
}
.hero-stat-label { font-size: 0.72rem; color: rgba(245,239,230,0.66); letter-spacing: 2px; text-transform: uppercase; margin-top: 8px; }
.hero-stat-divider { width: 1px; height: 46px; background: rgba(198,161,91,0.32); }

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

.hero-scroll {
    position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 2;
    width: 26px; height: 44px; border: 1px solid rgba(198,161,91,0.5); border-radius: 20px;
    display: flex; justify-content: center; padding-top: 8px;
}
.hero-scroll span { width: 4px; height: 8px; border-radius: 4px; background: var(--gold); animation: scrollDot 1.8s ease-in-out infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(-4px); } 50% { opacity: 1; } 100% { opacity: 0; transform: translateY(12px); } }

/* ===== VALUES ===== */
.values { padding: 96px 0; background: var(--ink-2); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.value-card {
    text-align: center; padding: 20px 18px; position: relative;
}
.value-card:not(:last-child)::after {
    content: ''; position: absolute; right: -15px; top: 50%; transform: translateY(-50%);
    width: 1px; height: 70%; background: rgba(198,161,91,0.18);
}
.value-icon {
    font-size: 2.2rem; margin-bottom: 16px; display: inline-block;
    filter: sepia(0.3) saturate(1.2);
}
.value-card h4 { font-size: 1.5rem; font-weight: 600; color: var(--cream); margin-bottom: 8px; }
.value-card p { font-size: 0.9rem; color: rgba(245,239,230,0.58); font-weight: 300; }

/* ===== ABOUT ===== */
.about { padding: 120px 0; background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-images { position: relative; }
.about-img-main {
    border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
}
.about-img-main img { width: 100%; height: 540px; object-fit: cover; }
.about-badge {
    position: absolute; bottom: -28px; right: -24px; background: var(--ink);
    border-radius: var(--radius-md); box-shadow: var(--shadow-lg); padding: 24px 30px; text-align: center;
    border: 1px solid rgba(198,161,91,0.3);
}
.about-badge .num { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 600; color: var(--gold-light); line-height: 1; }
.about-badge .lbl { font-size: 0.7rem; color: rgba(245,239,230,0.7); margin-top: 6px; letter-spacing: 1.6px; text-transform: uppercase; }
.about-list { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.about-list-item { display: flex; gap: 16px; align-items: flex-start; }
.about-check {
    width: 32px; height: 32px; border-radius: 50%; background: rgba(198,161,91,0.14); color: var(--gold-dark);
    display: flex; align-items: center; justify-content: center; font-size: 0.85rem; flex-shrink: 0; margin-top: 3px;
}
.about-list-item h4 { font-size: 1.35rem; font-weight: 600; margin-bottom: 2px; }
.about-list-item p { font-size: 0.92rem; color: var(--muted); }

/* ===== MENU ===== */
.menu { padding: 120px 0; background: var(--cream); position: relative; }
.menu-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: start; }
.menu-block {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 40px 34px; transition: all var(--transition); position: relative;
}
.menu-block:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.menu-block.featured {
    background: var(--ink); border-color: rgba(198,161,91,0.35);
    box-shadow: var(--shadow-lg); transform: translateY(-16px);
}
.menu-block.featured:hover { transform: translateY(-22px); }
.menu-block-flag {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark)); color: var(--ink);
    font-size: 0.66rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    padding: 7px 20px; border-radius: 50px; white-space: nowrap;
}
.menu-block-head { text-align: center; margin-bottom: 30px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.menu-block.featured .menu-block-head { border-color: rgba(198,161,91,0.2); }
.menu-block-mark { color: var(--gold); font-size: 1rem; display: block; margin-bottom: 8px; }
.menu-block-head h3 { font-size: 2rem; font-weight: 600; margin-bottom: 4px; }
.menu-block.featured .menu-block-head h3 { color: var(--cream); }
.menu-block-head p { font-size: 0.82rem; color: var(--muted); font-style: italic; letter-spacing: 0.5px; }
.menu-block.featured .menu-block-head p { color: rgba(245,239,230,0.6); }
.menu-list { list-style: none; display: flex; flex-direction: column; gap: 22px; }
.menu-item-top { display: flex; align-items: baseline; gap: 8px; }
.menu-item-name { font-family: 'Cormorant Garamond', serif; font-size: 1.28rem; font-weight: 600; color: var(--ink); flex-shrink: 1; }
.menu-block.featured .menu-item-name { color: var(--cream); }
.menu-item-dots { flex: 1; border-bottom: 1px dotted var(--line-strong); transform: translateY(-3px); min-width: 14px; }
.menu-block.featured .menu-item-dots { border-color: rgba(198,161,91,0.3); }
.menu-item-price { font-family: 'Cormorant Garamond', serif; font-size: 1.28rem; font-weight: 600; color: var(--gold-dark); white-space: nowrap; }
.menu-block.featured .menu-item-price { color: var(--gold-light); }
.menu-item-desc { font-size: 0.86rem; color: var(--muted); margin-top: 4px; font-weight: 300; }
.menu-block.featured .menu-item-desc { color: rgba(245,239,230,0.5); }
.menu-note {
    margin-top: 50px; text-align: center; max-width: 780px; margin-left: auto; margin-right: auto;
    padding: 26px 34px; border: 1px solid var(--line-strong); border-radius: var(--radius-md);
    background: rgba(255,255,255,0.5);
}
.menu-note p { font-size: 0.98rem; color: var(--text); font-weight: 300; }
.menu-note strong { color: var(--gold-dark); font-weight: 500; }

/* ===== STATS BAND ===== */
.stats-band { padding: 84px 0; background: var(--dark-panel-2); position: relative; overflow: hidden; }
.stats-band::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 15% 30%, rgba(198,161,91,0.16) 0%, transparent 45%),
                radial-gradient(circle at 85% 80%, rgba(123,45,59,0.18) 0%, transparent 45%);
}
.stats-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat { text-align: center; }
.stat-number { font-family: 'Cormorant Garamond', serif; font-size: 3.4rem; font-weight: 600; color: var(--cream); line-height: 1; }
.stat-suffix { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; color: var(--gold-light); }
.stat-label { display: block; font-size: 0.78rem; color: rgba(245,239,230,0.55); margin-top: 10px; letter-spacing: 1.8px; text-transform: uppercase; }

/* ===== CHEFS ===== */
.chefs { padding: 120px 0; background: var(--bg); }
.chefs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.chef-card {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
    overflow: hidden; transition: all var(--transition);
}
.chef-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(198,161,91,0.4); }
.chef-photo { height: 330px; position: relative; overflow: hidden; }
.chef-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.7s ease; filter: saturate(0.92); }
.chef-card:hover .chef-photo img { transform: scale(1.07); filter: saturate(1); }
.chef-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(20,17,14,0.5) 100%); }
.chef-social {
    position: absolute; bottom: 16px; left: 50%; transform: translate(-50%, 20px); z-index: 2;
    display: flex; gap: 10px; opacity: 0; transition: all var(--transition);
}
.chef-card:hover .chef-social { opacity: 1; transform: translate(-50%, 0); }
.chef-social a {
    width: 36px; height: 36px; border-radius: 50%; background: rgba(245,239,230,0.95);
    display: flex; align-items: center; justify-content: center; color: var(--ink); font-size: 0.72rem;
    transition: all var(--transition);
}
.chef-social a:hover { background: var(--gold); color: var(--ink); }
.chef-info { padding: 24px; text-align: center; }
.chef-info h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 4px; }
.chef-role { font-size: 0.7rem; color: var(--gold-dark); font-weight: 500; letter-spacing: 1.6px; text-transform: uppercase; display: block; margin-bottom: 10px; }
.chef-info p { font-size: 0.86rem; color: var(--muted); font-weight: 300; }

/* ===== GALLERY ===== */
.gallery { padding: 120px 0; background: var(--cream); }
.gallery-filter { display: flex; justify-content: center; gap: 12px; margin-bottom: 44px; flex-wrap: wrap; }
.filter-btn {
    padding: 10px 26px; border: 1px solid var(--line-strong); background: transparent; border-radius: 50px;
    font-family: 'Jost', sans-serif; font-size: 0.76rem; font-weight: 500; letter-spacing: 1.4px; text-transform: uppercase;
    color: var(--muted); cursor: pointer; transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold-dark); }
.filter-btn.active { background: var(--ink); border-color: var(--ink); color: var(--gold-light); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; grid-auto-flow: dense; }
.gallery-item {
    position: relative; border-radius: var(--radius-md); overflow: hidden; height: 260px;
    cursor: pointer; box-shadow: var(--shadow-sm); transition: all var(--transition);
}
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.gallery-item::before {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, transparent 40%, rgba(20,17,14,0.78) 100%);
    opacity: 0.6; transition: opacity var(--transition);
}
.gallery-item:hover { box-shadow: var(--shadow-lg); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::before { opacity: 1; }
.gallery-item figcaption {
    position: absolute; bottom: 20px; left: 22px; right: 22px; z-index: 2; color: var(--cream);
    font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600;
    transform: translateY(6px); transition: transform var(--transition);
}
.gallery-item:hover figcaption { transform: translateY(0); }
.gallery-item figcaption span {
    display: block; font-family: 'Jost', sans-serif; font-size: 0.64rem; font-weight: 500;
    letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 4px;
}
.gallery-item.hide { display: none; }

/* ===== RESERVATION ===== */
.reservation { padding: 120px 0; background: var(--bg); }
.reservation-wrap {
    display: grid; grid-template-columns: 0.92fr 1.08fr; background: var(--surface);
    border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line);
}
.reservation-side {
    position: relative; padding: 60px 48px; color: var(--cream);
    background: linear-gradient(155deg, var(--ink-2) 0%, var(--ink) 100%);
    display: flex; flex-direction: column; justify-content: center; overflow: hidden;
}
.reservation-side::before {
    content: '\2726'; position: absolute; top: 24px; right: 30px; font-size: 6rem;
    color: rgba(198,161,91,0.08); font-family: serif;
}
.reservation-side::after {
    content: ''; position: absolute; bottom: -80px; left: -50px; width: 220px; height: 220px;
    border-radius: 50%; background: radial-gradient(circle, rgba(123,45,59,0.24) 0%, transparent 70%);
}
.reservation-side .rs-inner { position: relative; z-index: 2; }
.reservation-side .section-tag { border-color: rgba(198,161,91,0.35); color: var(--gold-light); background: rgba(198,161,91,0.08); }
.reservation-side h2 { color: var(--cream); font-size: clamp(2rem, 3.4vw, 2.8rem); margin-bottom: 18px; }
.reservation-side h2 em { font-style: italic; color: var(--gold-light); font-weight: 500; }
.reservation-side .rs-inner > p { color: rgba(245,239,230,0.78); margin-bottom: 30px; font-size: 1rem; font-weight: 300; }
.reservation-benefits { list-style: none; display: flex; flex-direction: column; gap: 15px; margin-bottom: 34px; }
.reservation-benefits li { display: flex; align-items: center; gap: 13px; font-size: 0.95rem; color: rgba(245,239,230,0.9); font-weight: 300; }
.reservation-benefits li span {
    width: 28px; height: 28px; border-radius: 50%; background: rgba(198,161,91,0.16); color: var(--gold-light);
    display: flex; align-items: center; justify-content: center; font-size: 0.72rem; flex-shrink: 0;
}
.reservation-hours { padding-top: 26px; border-top: 1px solid rgba(198,161,91,0.2); }
.reservation-hours strong { display: block; font-size: 0.72rem; letter-spacing: 1.8px; text-transform: uppercase; color: rgba(245,239,230,0.6); margin-bottom: 6px; font-weight: 500; }
.reservation-hours a { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 600; color: var(--gold-light); }
.reservation-form { padding: 56px 50px; }
.reservation-form h3 { font-size: 2rem; font-weight: 600; margin-bottom: 6px; }
.reservation-form > p { font-size: 0.92rem; color: var(--muted); margin-bottom: 28px; font-weight: 300; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 0; }
.form-group label { display: block; font-size: 0.72rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; padding-left: 2px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 14px 16px; border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
    font-family: 'Jost', sans-serif; font-size: 0.92rem; font-weight: 300; color: var(--ink); background: var(--cream);
    transition: all var(--transition); outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted-light); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 4px rgba(198,161,91,0.14);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group select {
    cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23A67F3E' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center;
}
.reservation-form .btn { margin-top: 10px; padding: 16px; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 120px 0; background: var(--ink); }
.testimonials .section-title { color: var(--cream); }
.testimonials .section-title em { color: var(--gold-light); }
.testimonials .section-tag { border-color: rgba(198,161,91,0.32); color: var(--gold-light); background: rgba(198,161,91,0.06); }
.testimonials-slider { max-width: 880px; margin: 0 auto; overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.6s cubic-bezier(0.22,0.61,0.36,1); }
.testimonial-card {
    min-width: 100%; padding: 56px; background: var(--ink-2); border: 1px solid rgba(198,161,91,0.22);
    border-radius: var(--radius-lg); text-align: center;
}
.testimonial-stars { font-size: 0.95rem; color: var(--gold); letter-spacing: 6px; margin-bottom: 26px; }
.testimonial-text { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-style: italic; color: var(--cream); line-height: 1.6; margin-bottom: 32px; font-weight: 400; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.author-avatar {
    width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark)); color: var(--ink);
    font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 1.4rem;
}
.testimonial-author h4 { font-size: 1.2rem; font-weight: 600; color: var(--cream); }
.testimonial-author span { font-size: 0.8rem; color: var(--muted-light); letter-spacing: 0.5px; }
.testimonial-nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 34px; }
.testimonial-btn {
    width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(198,161,91,0.35); background: transparent;
    font-size: 1.1rem; color: var(--gold-light); cursor: pointer; transition: all var(--transition);
    display: flex; align-items: center; justify-content: center;
}
.testimonial-btn:hover { border-color: var(--gold); background: var(--gold); color: var(--ink); }
.testimonial-dots { display: flex; gap: 8px; }
.testimonial-dots .dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(198,161,91,0.3); cursor: pointer; transition: all var(--transition); }
.testimonial-dots .dot.active { background: var(--gold); width: 30px; border-radius: 5px; }

/* ===== CTA ===== */
.cta-section { padding: 110px 0; position: relative; overflow: hidden; background: var(--bg); }
.cta-inner {
    position: relative; border-radius: var(--radius-xl); overflow: hidden; padding: 80px 40px; text-align: center;
    background: linear-gradient(135deg, var(--ink-2) 0%, var(--ink) 100%); border: 1px solid rgba(198,161,91,0.28);
}
.cta-inner::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(198,161,91,0.18) 0%, transparent 45%),
                radial-gradient(circle at 82% 85%, rgba(123,45,59,0.26) 0%, transparent 48%);
}
.cta-content { position: relative; z-index: 2; color: var(--cream); }
.cta-content .section-tag { border-color: rgba(198,161,91,0.35); color: var(--gold-light); background: rgba(198,161,91,0.08); }
.cta-content h2 { color: var(--cream); font-size: clamp(2.4rem, 4.4vw, 3.6rem); margin-bottom: 16px; }
.cta-content h2 em { font-style: italic; color: var(--gold-light); font-weight: 500; }
.cta-content p { font-size: 1.1rem; color: rgba(245,239,230,0.8); margin-bottom: 34px; max-width: 560px; margin-left: auto; margin-right: auto; font-weight: 300; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact { padding: 120px 0; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.contact-card {
    padding: 36px 28px; background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--radius-md); text-align: center; transition: all var(--transition);
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(198,161,91,0.4); }
.contact-icon {
    width: 58px; height: 58px; margin: 0 auto 18px; border-radius: 50%; background: rgba(198,161,91,0.14);
    display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--gold-dark);
}
.contact-card:nth-child(2) .contact-icon, .contact-card:nth-child(4) .contact-icon { background: rgba(123,45,59,0.1); color: var(--wine); }
.contact-card h4 { font-size: 1.3rem; font-weight: 600; margin-bottom: 8px; }
.contact-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; font-weight: 300; }

/* ===== FOOTER ===== */
.footer { background: var(--dark-panel-2); color: var(--muted-light); padding: 88px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(198,161,91,0.12); }
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand p { font-size: 0.9rem; color: rgba(245,239,230,0.5); line-height: 1.75; margin-bottom: 22px; font-weight: 300; max-width: 340px; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.social-link {
    padding: 8px 18px; background: rgba(245,239,230,0.06); border: 1px solid rgba(198,161,91,0.16); border-radius: 50px;
    font-size: 0.72rem; font-weight: 400; letter-spacing: 0.8px; color: rgba(245,239,230,0.72); transition: all var(--transition);
}
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.footer-links h4 { color: var(--cream); font-size: 1.3rem; font-weight: 600; margin-bottom: 20px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 0.88rem; color: rgba(245,239,230,0.5); transition: color var(--transition); font-weight: 300; }
.footer-links a:hover { color: var(--gold-light); }
.footer-newsletter h4 { color: var(--cream); font-size: 1.3rem; font-weight: 600; margin-bottom: 14px; }
.footer-newsletter p { font-size: 0.88rem; color: rgba(245,239,230,0.5); margin-bottom: 18px; font-weight: 300; }
.newsletter-form { display: flex; }
.newsletter-form input {
    flex: 1; padding: 13px 18px; border: 1px solid rgba(198,161,91,0.2); border-right: none;
    border-radius: 50px 0 0 50px; background: rgba(245,239,230,0.06);
    color: var(--cream); font-family: 'Jost', sans-serif; font-size: 0.85rem; font-weight: 300; outline: none;
}
.newsletter-form input::placeholder { color: rgba(245,239,230,0.38); }
.newsletter-form button {
    padding: 13px 22px; background: linear-gradient(135deg, var(--gold-light), var(--gold-dark)); color: var(--ink); border: none;
    border-radius: 0 50px 50px 0; cursor: pointer; font-size: 1rem; transition: filter var(--transition);
}
.newsletter-form button:hover { filter: brightness(1.08); }
.footer-bottom { padding: 26px 0; text-align: center; }
.footer-bottom p { font-size: 0.8rem; color: rgba(245,239,230,0.34); letter-spacing: 0.5px; }

/* ===== BACK TO TOP & WHATSAPP ===== */
.back-to-top {
    position: fixed; bottom: 100px; right: 30px; width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color: var(--ink); border: none; border-radius: 50%; font-size: 1.2rem; cursor: pointer;
    opacity: 0; visibility: hidden; transition: all var(--transition); box-shadow: var(--shadow-md);
    z-index: 100; display: flex; align-items: center; justify-content: center;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.whatsapp-btn {
    position: fixed; bottom: 30px; right: 30px; display: flex; align-items: center; gap: 8px;
    padding: 14px 24px; background: #25D366; color: var(--white); border-radius: 50px; font-size: 0.78rem;
    font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3); z-index: 100; transition: all var(--transition);
}
.whatsapp-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4); }
.whatsapp-icon { font-size: 1.2rem; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.9s cubic-bezier(0.22, 0.61, 0.36, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .values-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
    .value-card:nth-child(2)::after { display: none; }
    .value-card::after { display: none; }
    .menu-columns { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
    .menu-block.featured { transform: none; }
    .menu-block.featured:hover { transform: translateY(-6px); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 44px 20px; }
    .chefs-grid { grid-template-columns: repeat(2, 1fr); }
    .reservation-wrap { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item.wide { grid-column: span 2; }
}
@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .nav-links.active {
        display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
        background: rgba(20,17,14,0.97); backdrop-filter: blur(20px); padding: 24px; gap: 18px;
        box-shadow: var(--shadow-md); border-bottom: 1px solid rgba(198,161,91,0.22);
    }
    .hero { min-height: auto; padding: 140px 0 100px; }
    .hero-stats { flex-wrap: wrap; gap: 22px; }
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-img-main img { height: 420px; }
    .about-badge { right: 16px; bottom: -22px; }
    .chefs-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
    .reservation-side { padding: 48px 34px; }
    .reservation-form { padding: 44px 30px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr; gap: 34px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    .testimonial-card { padding: 38px 26px; }
    .testimonial-text { font-size: 1.35rem; }
    .cta-inner { padding: 56px 26px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item.wide { grid-column: span 1; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 2.7rem; }
    .hero-stat-divider { display: none; }
    .stats-grid { grid-template-columns: 1fr; gap: 34px; }
    .whatsapp-text { display: none; }
    .hero-stats { gap: 26px; }
    .menu-item-name { font-size: 1.15rem; }
    .section-title { font-size: 2.1rem; }
}
