:root {
  --bg: #0f0d0c;
  --bg-alt: #171310;
  --card: #1c1714;
  --text: #f4ede4;
  --text-muted: #b8ab9c;
  --accent: #c8973f;
  --accent-light: #e0b567;
  --line: rgba(244, 237, 228, 0.1);
  --radius: 14px;
  --shadow: 0 20px 50px rgba(0,0,0,0.35);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Jost', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; line-height: 1.15; }

.eyebrow {
  display: inline-block;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 12px;
}

/* Preloader */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
.preloader span {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--accent);
  letter-spacing: 2px;
  animation: pulse 1.2s ease-in-out infinite;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
@keyframes pulse { 0%,100%{opacity:.4} 50%{opacity:1} }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.4px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #1a1310; }
.btn-primary:hover { background: var(--accent-light); }
.btn-outline { border-color: var(--accent); color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: #1a1310; }
.btn-ghost { border-color: rgba(244,237,228,0.4); color: var(--text); }
.btn-ghost:hover { border-color: var(--text); }
.btn-full { width: 100%; }

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0;
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}
.site-header.scrolled {
  background: rgba(15, 13, 12, 0.92);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: inline-flex; align-items: center; }
.logo img {
  width: 54px; height: 54px; border-radius: 50%;
  object-fit: cover; background: #fff;
  box-shadow: 0 0 0 2px var(--accent);
}
.nav-desktop { display: flex; gap: 34px; }
.nav-desktop a {
  font-size: 0.92rem; font-weight: 400; color: var(--text-muted);
  position: relative; transition: color .25s ease;
}
.nav-desktop a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--accent);
  transition: width .25s ease;
}
.nav-desktop a:hover { color: var(--text); }
.nav-desktop a:hover::after { width: 100%; }
.nav-cta { padding: 10px 24px; font-size: 0.85rem; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; z-index: 1100; }
.burger span { width: 24px; height: 2px; background: var(--text); transition: all .3s ease; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed; top: 0; right: -100%; width: 75%; max-width: 320px; height: 100vh;
  background: var(--bg-alt);
  flex-direction: column;
  gap: 6px;
  padding: 100px 32px 32px;
  transition: right .4s ease;
  z-index: 1050;
  box-shadow: -10px 0 30px rgba(0,0,0,0.4);
}
.nav-mobile.open { right: 0; }
.nav-mobile a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,8,7,0.55) 0%, rgba(10,8,7,0.65) 45%, rgba(10,8,7,0.95) 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; margin: 0 auto; }
.hero .eyebrow { color: var(--accent-light); }
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
  color: #fff;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--accent); font-style: italic; }
.hero-text {
  max-width: 520px; margin: 0 auto 34px;
  color: var(--text-muted); font-size: 1.05rem;
}
.hero-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

.scroll-cue {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  z-index: 2;
}
.scroll-cue span {
  display: block; width: 26px; height: 42px; border: 1px solid rgba(244,237,228,0.5);
  border-radius: 20px; position: relative;
}
.scroll-cue span::before {
  content: ""; position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; background: var(--accent);
  border-radius: 3px;
  animation: scrollDown 1.6s ease infinite;
}
@keyframes scrollDown { 0%{ top:8px; opacity:1 } 70%{ top:22px; opacity:0 } 100%{ opacity:0 } }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* About */
.about { padding: 130px 0; background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: var(--radius); box-shadow: var(--shadow); }
.about-img-sub {
  position: absolute; bottom: -40px; right: -40px; width: 55%;
  border: 6px solid var(--bg); border-radius: var(--radius); box-shadow: var(--shadow);
}
.about-copy h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 20px; }
.about-copy p { color: var(--text-muted); margin-bottom: 30px; }
.about-stats { display: flex; gap: 40px; margin-bottom: 34px; flex-wrap: wrap; }
.stat-num { display: block; font-family: var(--font-heading); font-size: 2.2rem; color: var(--accent); }
.stat-label { color: var(--text-muted); font-size: 0.85rem; }

/* Section head */
.section-head { text-align: center; max-width: 560px; margin: 0 auto 60px; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 14px; }
.section-sub { color: var(--text-muted); }

/* Menu */
.menu { padding: 130px 0; background: var(--bg-alt); }
.menu-filters { display: flex; gap: 14px; justify-content: center; margin-bottom: 50px; flex-wrap: wrap; }
.filter-btn {
  background: transparent; border: 1px solid var(--line); color: var(--text-muted);
  padding: 10px 22px; border-radius: 999px; font-family: var(--font-body); font-size: 0.85rem;
  cursor: pointer; transition: all .25s ease;
}
.filter-btn:hover { border-color: var(--accent); color: var(--text); }
.filter-btn.active { background: var(--accent); border-color: var(--accent); color: #1a1310; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.menu-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .35s ease, box-shadow .35s ease;
  display: none;
}
.menu-card.show { display: block; }
.menu-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.menu-img { height: 220px; overflow: hidden; }
.menu-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.menu-card:hover .menu-img img { transform: scale(1.08); }
.menu-body { padding: 22px 24px 26px; }
.menu-title-row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 10px; }
.menu-title-row h3 { font-size: 1.15rem; }
.price { color: var(--accent); font-weight: 500; white-space: nowrap; }
.menu-body p { color: var(--text-muted); font-size: 0.9rem; }

/* Gallery */
.gallery { padding: 130px 0 100px; background: var(--bg); }
.gallery-strip {
  display: flex; gap: 18px; overflow-x: auto; padding: 0 24px 20px;
  scroll-snap-type: x proximity;
}
.gallery-strip::-webkit-scrollbar { height: 6px; }
.gallery-strip::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }
.gallery-strip img {
  height: 320px; width: 260px; object-fit: cover; border-radius: var(--radius);
  flex: 0 0 auto; scroll-snap-align: start;
  transition: transform .4s ease;
}
.gallery-strip img:hover { transform: scale(1.03); }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, #221a12, #171310);
  padding: 80px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-band-inner { text-align: center; max-width: 600px; margin: 0 auto; }
.cta-band-inner h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 14px; }
.cta-band-inner p { color: var(--text-muted); margin-bottom: 30px; }

/* Contact */
.contact { padding: 130px 0; background: var(--bg-alt); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 70px; }
.contact-info h2 { font-size: clamp(1.9rem, 3.4vw, 2.4rem); margin-bottom: 30px; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 22px; margin-bottom: 34px; }
.contact-list li { display: flex; flex-direction: column; gap: 4px; }
.contact-list strong { color: var(--accent); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }
.contact-list a:hover { color: var(--accent); }
.socials { display: flex; gap: 14px; }
.socials a {
  width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 0.75rem;
  transition: all .25s ease;
}
.socials a:hover { border-color: var(--accent); color: var(--accent); }

.contact-form {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 44px;
}
.contact-form h2 { font-size: 1.7rem; margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 8px; }
.form-group input, .form-group textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--line); border-radius: 8px;
  padding: 12px 14px; color: var(--text); font-family: var(--font-body); font-size: 0.92rem;
  transition: border-color .25s ease;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); }
.form-group textarea { resize: vertical; }
.form-note { margin-top: 14px; font-size: 0.88rem; color: var(--accent-light); min-height: 1.2em; }

/* Footer */
.site-footer { background: var(--bg); padding: 44px 0; border-top: 1px solid var(--line); }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.footer-inner p { color: var(--text-muted); font-size: 0.85rem; }
.footer-demo { opacity: 0.6; font-size: 0.78rem !important; }

/* Back to top */
.to-top {
  position: fixed; bottom: 26px; right: 26px; width: 46px; height: 46px;
  background: var(--accent); color: #1a1310; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; z-index: 900;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .3s ease;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--accent-light); }

/* Responsive */
@media (max-width: 900px) {
  .nav-desktop, .nav-cta { display: none; }
  .burger { display: flex; }
  .nav-mobile { display: flex; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-images { margin-bottom: 20px; }
  .about-img-sub { right: 0; bottom: -30px; }
}

@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 30px 22px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .about-stats { gap: 24px; }
}
