/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: 'Inter', sans-serif; color: #fff; background: #080604; line-height: 1.7; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; border: none; outline: none; }

/* ========== VARIABLES ========== */
:root {
   --gold: #d4a24e;
   --gold-light: #f0c76e;
   --gold-dark: #b8872e;
   --red: #c0392b;
   --red-light: #e74c3c;
   --green: #1a7a4c;
   --green-light: #27ae60;
   --bg: #080604;
   --bg-soft: #100d09;
   --bg-card: rgba(27,22,16,0.78);
   --text: #ffffff;
   --text-muted: #999999;
   --text-dim: #666666;
   --border: rgba(255,255,255,0.1);
   --font-title: 'Playfair Display', Georgia, serif;
   --font-body: 'Inter', sans-serif;
   --radius: 16px;
   --shadow: 0 24px 80px rgba(0,0,0,0.55);
   --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ========== UTILITIES ========== */
.wrapper { width: min(1200px, calc(100% - 40px)); margin: 0 auto; }
.flex-row { display: flex; align-items: center; }
.section-tag { display: inline-block; color: var(--gold); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 12px; }
.ambient-cursor { position: fixed; width: 360px; height: 360px; border-radius: 50%; pointer-events: none; z-index: 1; left: 0; top: 0; opacity: 0.18; background: radial-gradient(circle, rgba(240,199,110,0.45), transparent 62%); transform: translate3d(-50%, -50%, 0); filter: blur(10px); mix-blend-mode: screen; transition: opacity 0.3s ease; }
.section-glow { position: absolute; width: 420px; height: 420px; border-radius: 50%; pointer-events: none; background: radial-gradient(circle, rgba(212,162,78,0.12), transparent 68%); filter: blur(6px); animation: driftGlow 9s ease-in-out infinite alternate; }
.section-glow-left { left: -180px; top: 20%; }
.section-glow-right { right: -180px; top: 12%; }

/* ========== PRELOADER ========== */
#preloader { position: fixed; inset: 0; z-index: 9999; background: #0a0a0a; display: flex; align-items: center; justify-content: center; transition: opacity 0.6s ease, visibility 0.6s ease; }
#preloader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-circle { width: 50px; height: 50px; border: 3px solid var(--border); border-top-color: var(--gold); border-radius: 50%; margin: 0 auto 16px; animation: spin 0.8s linear infinite; }
.loader-inner span { font-family: var(--font-title); font-size: 1.4rem; color: var(--gold); letter-spacing: 0.15em; }
.preloader-logo { width: 240px; height: auto; object-fit: contain; animation: pulseLogo 1.5s ease-in-out infinite; }
@keyframes pulseLogo { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.08); } }
@keyframes spin { to { transform: rotate(360deg); } }

/* ========== HEADER ========== */
#header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 18px 0; transition: var(--transition); }
#header.scrolled { padding: 8px 0; background: rgba(8,6,4,0.76); backdrop-filter: blur(24px); border-bottom: 1px solid rgba(212,162,78,0.18); box-shadow: 0 18px 50px rgba(0,0,0,0.32); }
#header .flex-row { justify-content: space-between; }
#logo { display: flex; align-items: center; gap: 10px; z-index: 101; }
.logo-img { height: 180px; width: auto; object-fit: contain; transition: var(--transition); filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4)); animation: logoFloat 4s ease-in-out infinite, logoGlow 3s ease-in-out infinite alternate; }
.logo-img:hover { transform: scale(1.1) rotate(-2deg); filter: drop-shadow(0 0 25px rgba(212,162,78,0.7)) drop-shadow(0 0 50px rgba(212,162,78,0.3)); animation-play-state: paused; }
#header.scrolled .logo-img { height: 120px; animation: logoGlow 3s ease-in-out infinite alternate; }
@keyframes logoFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes logoGlow { 0% { filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4)) drop-shadow(0 0 5px rgba(212,162,78,0.1)); } 100% { filter: drop-shadow(0 2px 12px rgba(0,0,0,0.5)) drop-shadow(0 0 18px rgba(212,162,78,0.4)); } }
.menu { display: flex; gap: 32px; }
.menu a { font-size: 0.85rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; position: relative; transition: color var(--transition); }
.menu a::after { content: ''; position: absolute; bottom: -7px; left: 50%; width: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); transition: var(--transition); transform: translateX(-50%); }
.menu a:hover, .menu a.active { color: var(--gold); }
.menu a:hover::after, .menu a.active::after { width: 100%; }
#openmenu, #closemenu { display: none; font-size: 1.4rem; color: #fff; z-index: 101; }

/* ========== BUTTONS ========== */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 36px; border-radius: 50px; background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark)); color: #120d05; font-weight: 800; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; cursor: pointer; transition: var(--transition); border: 1px solid rgba(255,255,255,0.18); position: relative; overflow: hidden; box-shadow: 0 12px 40px rgba(212,162,78,0.22); }
.btn:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 18px 45px rgba(212,162,78,0.38); }
.btn i { transition: transform var(--transition); }
.btn:hover i { transform: translateX(5px); }
.btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent); transition: 0.6s; }
.btn:hover::before { left: 100%; }

/* ========== HERO ========== */
#home { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; background: url('images/bg-header.jpg') center/cover no-repeat; overflow: hidden; isolation: isolate; }
#home::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 35%, rgba(212,162,78,0.18), transparent 38%), linear-gradient(90deg, rgba(0,0,0,0.7), transparent 45%, rgba(0,0,0,0.7)); z-index: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.38) 46%, rgba(8,6,4,1) 100%); z-index: 1; }
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.hero-particle { position: absolute; width: 3px; height: 3px; background: var(--gold); border-radius: 50%; opacity: 0; box-shadow: 0 0 16px var(--gold); animation: floatParticle 6s ease-in-out infinite; z-index: 2; }
.hero-orb { position: absolute; width: 260px; height: 260px; border: 1px solid rgba(212,162,78,0.16); border-radius: 50%; z-index: 2; opacity: 0.8; animation: orbitFloat 10s ease-in-out infinite alternate; }
.hero-orb::before { content: ''; position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--gold); top: 34px; left: 45px; box-shadow: 0 0 24px var(--gold); }
.hero-orb-one { left: 8%; top: 28%; }
.hero-orb-two { right: 10%; bottom: 18%; width: 170px; height: 170px; animation-delay: -3s; }
@keyframes floatParticle { 0%,100% { opacity: 0; transform: translateY(0) scale(0.7); } 50% { opacity: 0.75; transform: translateY(-95px) scale(1.3); } }
.home-content { position: relative; z-index: 3; max-width: 860px; padding: 130px 20px 80px; }
.hero-badge { display: inline-block; padding: 9px 26px; border: 1px solid rgba(212,162,78,0.42); border-radius: 50px; color: var(--gold-light); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 24px; backdrop-filter: blur(12px); background: rgba(212,162,78,0.1); box-shadow: inset 0 0 24px rgba(212,162,78,0.08); }
.home-content h1 { font-family: var(--font-title); font-size: clamp(3.4rem, 8.8vw, 7.3rem); line-height: 0.92; font-weight: 800; margin-bottom: 28px; background: linear-gradient(100deg, #fff 18%, var(--gold-light) 48%, #fff 68%); background-size: 220% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; text-shadow: 0 28px 80px rgba(0,0,0,0.6); }
.home-content p { color: var(--text-muted); font-size: 1.1rem; max-width: 560px; margin: 0 auto 40px; line-height: 1.8; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 540px; margin: 42px auto 0; }
.hero-stats div { padding: 16px 18px; border: 1px solid rgba(255,255,255,0.12); border-radius: 18px; background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03)); backdrop-filter: blur(16px); box-shadow: 0 16px 45px rgba(0,0,0,0.24); }
.hero-stats strong { display: block; font-family: var(--font-title); font-size: 1.7rem; color: var(--gold-light); line-height: 1; }
.hero-stats span { display: block; color: var(--text-muted); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; margin-top: 7px; }
.scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; animation: bounceDown 2s infinite; }
.mouse { width: 26px; height: 40px; border: 2px solid rgba(255,255,255,0.3); border-radius: 14px; display: flex; justify-content: center; padding-top: 8px; }
.wheel { width: 3px; height: 8px; background: var(--gold); border-radius: 3px; animation: scrollWheel 1.5s infinite; }
@keyframes scrollWheel { 0% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(10px); } }
@keyframes bounceDown { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
.scroll-indicator span { font-size: 0.7rem; color: var(--text-dim); letter-spacing: 0.1em; text-transform: uppercase; }

/* ========== TITLE CENTER ========== */
.title-center { text-align: center; max-width: 700px; margin: 0 auto 50px; padding: 0 20px; }
.title-center h2 { font-family: var(--font-title); font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 16px; line-height: 1.15; }
.title-center p { color: var(--text-muted); font-size: 0.95rem; }

/* ========== SPECIAL DISHES ========== */
#special-dishes { padding: 110px 0; background: radial-gradient(circle at 10% 20%, rgba(212,162,78,0.07), transparent 30%), var(--bg); position: relative; overflow: hidden; }
.dishes-carousel { overflow: hidden; position: relative; }
.dish-track { display: flex; gap: 24px; transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94); }
.dish-card { min-width: calc(33.333% - 16px); background: linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.025)); border-radius: 24px; overflow: hidden; border: 1px solid var(--border); transition: var(--transition); box-shadow: var(--shadow); backdrop-filter: blur(14px); }
.dish-card:hover { transform: translateY(-12px) rotateX(2deg); border-color: rgba(212,162,78,0.38); box-shadow: 0 28px 70px rgba(212,162,78,0.16); }
.dish-card-img { position: relative; height: 240px; overflow: hidden; }
.dish-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.dish-card:hover .dish-card-img img { transform: scale(1.1); }
.dish-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.dish-overlay i { font-size: 1.5rem; color: var(--gold); }
.dish-card:hover .dish-overlay { opacity: 1; }
.dish-card-content { padding: 24px; }
.dish-card-content h3 { font-family: var(--font-title); font-size: 1.3rem; margin-bottom: 6px; }
.dish-card-content p { color: var(--text-muted); font-size: 0.85rem; }
.dish-card-content .price { color: var(--gold); font-size: 1.3rem; font-weight: 700; margin-top: 12px; }
.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 30px; }
.carousel-btn { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--border); background: transparent; color: #fff; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.carousel-btn:hover { background: var(--gold); color: #0a0a0a; border-color: var(--gold); }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); cursor: pointer; transition: var(--transition); border: none; }
.carousel-dot.active { background: var(--gold); width: 28px; border-radius: 5px; }

/* ========== ABOUT US ========== */
#about-us { padding: 110px 0; background: linear-gradient(135deg, #100d09, #090705); position: relative; overflow: hidden; }
#about-us::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(212,162,78,0.06), transparent 70%); pointer-events: none; }
#about-us .flex-row { gap: 60px; }
.about-img { position: relative; flex: 1; min-height: 450px; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); transform-style: preserve-3d; }
.about-img::after { content: ''; position: absolute; inset: 18px; border: 1px solid rgba(255,255,255,0.2); border-radius: 22px; pointer-events: none; }
.about-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 28px; transition: transform 1s ease; }
.about-img:hover img { transform: scale(1.06); }
.play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 70px; height: 70px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #0a0a0a; font-size: 1.2rem; transition: var(--transition); z-index: 2; }
.play-btn:hover { transform: translate(-50%,-50%) scale(1.1); }
.play-ripple { position: absolute; inset: -8px; border: 2px solid var(--gold); border-radius: 50%; animation: ripple 1.5s infinite; }
@keyframes ripple { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.5); opacity: 0; } }
.about-content { flex: 1; }
.about-content h2 { font-family: var(--font-title); font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 20px; line-height: 1.2; }
.about-content p { color: var(--text-muted); margin-bottom: 16px; font-size: 0.95rem; }
.advantage { gap: 30px; margin-top: 30px; flex-wrap: wrap; }
.advantage-item { text-align: center; }
.advantage-icon { width: 60px; height: 60px; border-radius: 50%; background: rgba(212,162,78,0.1); border: 1px solid rgba(212,162,78,0.25); display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; color: var(--gold); font-size: 1.2rem; transition: var(--transition); }
.advantage-item:hover .advantage-icon { background: var(--gold); color: #0a0a0a; transform: translateY(-6px) scale(1.08) rotate(6deg); box-shadow: 0 16px 30px rgba(212,162,78,0.2); }
.advantage-item p { font-size: 0.85rem; font-weight: 500; }

/* ========== OFFER ========== */
#offer { position: relative; padding: 130px 0; background: url('images/bg-offer.jpg') center/cover no-repeat fixed; text-align: center; overflow: hidden; }
.offer-overlay { position: absolute; inset: 0; background: radial-gradient(circle, rgba(212,162,78,0.18), transparent 42%), rgba(0,0,0,0.72); }
#offer .wrapper { position: relative; z-index: 2; }
.offer-tag { display: inline-block; padding: 8px 20px; background: var(--gold); color: #0a0a0a; border-radius: 50px; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 24px; animation: pulsePill 1.8s ease-in-out infinite; }
#offer h2 { font-family: var(--font-title); font-size: clamp(2.5rem, 6vw, 4rem); line-height: 1.15; margin-bottom: 30px; }

/* ========== CHEFS ========== */
#chefs { padding: 110px 0; background: linear-gradient(180deg, var(--bg), #0f0a06); }
.chefs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.chefs-item { background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025)); border-radius: 24px; overflow: hidden; border: 1px solid var(--border); transition: var(--transition); text-align: center; box-shadow: 0 18px 55px rgba(0,0,0,0.28); }
.chefs-item:hover { transform: translateY(-10px); border-color: rgba(212,162,78,0.38); box-shadow: 0 24px 65px rgba(212,162,78,0.13); }
.chef-img-wrap { height: 300px; overflow: hidden; }
.chef-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.chefs-item:hover .chef-img-wrap img { transform: scale(1.08); }
.about-chefs { padding: 24px; }
.about-chefs h3 { font-family: var(--font-title); font-size: 1.3rem; margin-bottom: 4px; }
.about-chefs > p { color: var(--gold); font-size: 0.85rem; margin-bottom: 14px; }
.chef-social { display: flex; gap: 10px; justify-content: center; }
.chef-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; transition: var(--transition); }
.chef-social a:hover { background: var(--gold); color: #0a0a0a; border-color: var(--gold); }

/* ========== MENU ========== */
#menu { padding: 110px 0; background: radial-gradient(circle at 88% 15%, rgba(192,57,43,0.11), transparent 28%), var(--bg-soft); position: relative; overflow: hidden; }
.list-menu { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.menu-filter { display: inline-block; padding: 10px 24px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; color: var(--text-muted); border: 1px solid var(--border); transition: var(--transition); }
.menu-filter.active, .menu-filter:hover { background: var(--gold); color: #0a0a0a; border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 12px 28px rgba(212,162,78,0.18); }
.menu-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.single-menu-item { background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025)); border-radius: 22px; overflow: hidden; border: 1px solid var(--border); transition: var(--transition); box-shadow: 0 18px 50px rgba(0,0,0,0.25); }
.single-menu-item:hover { transform: translateY(-9px) scale(1.01); border-color: rgba(212,162,78,0.35); box-shadow: 0 24px 60px rgba(0,0,0,0.38); }
.single-menu-item.hidden { display: none; }
.menu-item-img { position: relative; height: 200px; overflow: hidden; }
.menu-item-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.single-menu-item:hover .menu-item-img img { transform: scale(1.08); }
.menu-badge { position: absolute; top: 12px; right: 12px; padding: 5px 14px; background: var(--gold); color: #0a0a0a; border-radius: 50px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.menu-badge.new { background: #e74c3c; color: #fff; }
.menu-item-content { padding: 20px; }
.menu-item-content h3 { font-family: var(--font-title); font-size: 1.15rem; margin-bottom: 6px; }
.menu-item-content p { color: var(--text-muted); font-size: 0.82rem; }
.menu-item-content .price { color: var(--gold); font-size: 1.2rem; font-weight: 700; margin-top: 10px; }

/* ========== GALLERY ========== */
#gallery { padding: 110px 0; background: linear-gradient(180deg, var(--bg), #0c0906); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item { position: relative; border-radius: 24px; overflow: hidden; height: 260px; display: block; box-shadow: 0 18px 50px rgba(0,0,0,0.32); transition: var(--transition); }
.gallery-item:nth-child(2), .gallery-item:nth-child(5) { transform: translateY(28px); }
.gallery-item:hover { transform: translateY(-8px) scale(1.02); }
.gallery-item:nth-child(2):hover, .gallery-item:nth-child(5):hover { transform: translateY(18px) scale(1.02); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.gallery-overlay i { font-size: 1.8rem; color: var(--gold); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ========== BOOKING ========== */
#booking-table { padding: 110px 0; background: radial-gradient(circle at 50% 0%, rgba(212,162,78,0.08), transparent 34%), var(--bg-soft); }
.wrapp-booking-form { gap: 50px; align-items: flex-start; }
.booking-form { flex: 1.2; }
.booking-form, .working-hours { padding: 34px; background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025)); border-radius: 26px; border: 1px solid var(--border); box-shadow: var(--shadow); backdrop-filter: blur(14px); }
.working-hours { flex: 1; }
.working-hours h3 { font-family: var(--font-title); font-size: 1.6rem; margin-bottom: 16px; color: var(--gold); }
.working-hours > p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 24px; }
.table-hours { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--border); }
.table-hours p:last-child { color: var(--gold); font-weight: 600; }
.input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.input-group label { display: block; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.08em; }
.input-group input { width: 100%; padding: 14px 18px; background: rgba(8,6,4,0.72); border: 1px solid var(--border); border-radius: 14px; color: #fff; transition: var(--transition); }
.input-group input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,162,78,0.15); }
.booking-form .btn { width: 100%; justify-content: center; margin-top: 8px; }
.result { text-align: center; margin-top: 16px; color: var(--gold); font-weight: 600; }

/* ========== FOOTER ========== */
#contacts { padding: 90px 0 0; background: linear-gradient(180deg, var(--bg), #050403); border-top: 1px solid rgba(212,162,78,0.16); }
.wrapp-contacts { justify-content: space-between; gap: 30px; flex-wrap: wrap; padding-bottom: 40px; }
.wrapp-contacts h3 { font-family: var(--font-title); font-size: 1.2rem; margin-bottom: 8px; }
.wrapp-contacts h3 i { margin-right: 10px; color: var(--gold); }
.wrapp-contacts p { color: var(--text-muted); font-size: 0.9rem; }
.wrapp-contacts .phone { color: var(--gold); transition: var(--transition); }
.wrapp-contacts .phone:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.footer-social a:hover { background: var(--gold); color: #0a0a0a; border-color: var(--gold); }
.wrapp-map { margin-top: 20px; }
.wrapp-map iframe { width: 100%; border-radius: var(--radius); filter: grayscale(0.8) brightness(0.7); transition: var(--transition); }
.wrapp-map iframe:hover { filter: grayscale(0) brightness(1); }
.copyright { text-align: center; padding: 24px 20px; color: var(--text-dim); font-size: 0.85rem; border-top: 1px solid var(--border); margin-top: 20px; }
.copyright a { color: var(--gold); }

/* ========== SCROLL TOP ========== */
.scroll-top-btn { position: fixed; bottom: 30px; right: 30px; width: 48px; height: 48px; border-radius: 50%; background: var(--gold); color: #0a0a0a; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; z-index: 90; opacity: 0; visibility: hidden; transform: translateY(20px); transition: var(--transition); box-shadow: 0 8px 25px rgba(212,162,78,0.3); }
.scroll-top-btn.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top-btn:hover { transform: translateY(-4px); }

/* ========== ANIMATIONS ========== */
[data-anim] { opacity: 0; transition: opacity 0.8s ease, transform 0.8s ease; }
[data-anim="fade-up"] { transform: translateY(40px); }
[data-anim="fade-down"] { transform: translateY(-40px); }
[data-anim="fade-left"] { transform: translateX(60px); }
[data-anim="fade-right"] { transform: translateX(-60px); }
[data-anim="zoom-in"] { transform: scale(0.9); }
[data-anim="reveal-up"] { transform: translateY(55px) scale(0.96); filter: blur(10px); }
[data-anim].animated { opacity: 1; transform: translate(0) scale(1); }
[data-anim="reveal-up"].animated { filter: blur(0); }

@keyframes shimmer { 0% { background-position: 0% center; } 100% { background-position: 100% center; } }
@keyframes orbitFloat { 0% { transform: translateY(0) rotate(0deg); } 100% { transform: translateY(-24px) rotate(22deg); } }
@keyframes driftGlow { 0% { transform: translateY(0) scale(1); } 100% { transform: translateY(35px) scale(1.12); } }
@keyframes pulsePill { 0%, 100% { transform: scale(1); box-shadow: 0 0 0 rgba(212,162,78,0); } 50% { transform: scale(1.04); box-shadow: 0 0 38px rgba(212,162,78,0.28); } }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
   .chefs-grid, .menu-grid { grid-template-columns: repeat(2, 1fr); }
   .dish-card { min-width: calc(50% - 12px); }
   #about-us .flex-row { flex-direction: column; gap: 40px; }
   .about-img { width: 100%; min-height: 350px; }
   .wrapp-booking-form { flex-direction: column; }
   .working-hours { width: 100%; }
   .hero-orb { display: none; }
}

@media (max-width: 768px) {
   #openmenu { display: block; }
   #nav { position: fixed; top: 0; right: -300px; width: 280px; height: 100vh; background: rgba(10,10,10,0.98); backdrop-filter: blur(20px); padding: 80px 30px 30px; transition: right 0.4s ease; z-index: 100; border-left: 1px solid var(--border); }
   #nav.open { right: 0; }
   #closemenu { display: block; position: absolute; top: 20px; right: 20px; font-size: 1.4rem; }
   .menu { flex-direction: column; gap: 20px; }
   .menu a { font-size: 1rem; }
   .gallery-grid { grid-template-columns: repeat(2, 1fr); }
   .wrapp-contacts { flex-direction: column; text-align: center; }
   .footer-social { justify-content: center; }
   .dish-card { min-width: calc(100% - 0px); }
   .chefs-grid, .menu-grid { grid-template-columns: 1fr; }
   .input-row { grid-template-columns: 1fr; }
   .home-content h1 { font-size: 2.8rem; }
   .hero-stats { grid-template-columns: 1fr; max-width: 260px; }
   .ambient-cursor { display: none; }
   .gallery-item:nth-child(2), .gallery-item:nth-child(5), .gallery-item:nth-child(2):hover, .gallery-item:nth-child(5):hover { transform: none; }
   .booking-form, .working-hours { padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
   *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}
