:root{
  --bg-deep:#1a0f0a;
  --bg:#241510;
  --bg-soft:#2e1c14;
  --cream:#f5ead5;
  --cream-soft:#ebd9b4;
  --gold:#d4a44a;
  --gold-bright:#e8bc63;
  --red:#a83d2a;
  --red-deep:#7a2818;
  --text:#f5ead5;
  --text-muted:#bfa987;
  --border:rgba(212,164,74,.2);
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  background:var(--bg);
  color:var(--text);
  font-family:'Manrope',sans-serif;
  font-weight:300;
  line-height:1.6;
  overflow-x:hidden;
}

body::before{
  content:'';
  position:fixed;
  inset:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .15 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events:none;
  z-index:1;
  opacity:.4;
}

/* NAVIGATION */
nav{
  position:fixed;
  top:0;left:0;right:0;
  z-index:100;
  padding:1.5rem 3rem;
  display:flex;
  justify-content:space-between;
  align-items:center;
  transition:background .4s ease,padding .4s ease,backdrop-filter .4s ease;
}
nav.scrolled{
  background:rgba(26,15,10,.85);
  backdrop-filter:blur(20px);
  padding:1rem 3rem;
  border-bottom:1px solid var(--border);
}
.logo{
  font-family:'Cormorant Garamond',serif;
  font-size:1.9rem;
  font-weight:600;
  letter-spacing:.15em;
  color:var(--gold);
}
.logo span{font-style:italic;font-weight:400;color:var(--cream)}
.nav-links{display:flex;gap:2.5rem;list-style:none}
.nav-links a{
  color:var(--cream-soft);
  text-decoration:none;
  font-size:.85rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  font-weight:500;
  position:relative;
  padding:.3rem 0;
}
.nav-links a::after{
  content:'';
  position:absolute;
  bottom:0;left:50%;
  width:0;height:1px;
  background:var(--gold);
  transition:all .3s ease;
  transform:translateX(-50%);
}
.nav-links a:hover::after{width:100%}
.nav-links a:hover{color:var(--gold)}

.call-btn{
  background:transparent;
  border:1px solid var(--gold);
  color:var(--gold);
  padding:.6rem 1.4rem;
  font-size:.8rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  cursor:pointer;
  transition:all .3s ease;
  text-decoration:none;
  font-family:inherit;
}
.call-btn:hover{
  background:var(--gold);
  color:var(--bg);
}

/* HERO */
.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  padding:8rem 2rem 4rem;
  overflow:hidden;
}
.hero::before{
  content:'';
  position:absolute;
  inset:0;
  background:
    radial-gradient(ellipse at top right,rgba(212,164,74,.15),transparent 50%),
    radial-gradient(ellipse at bottom left,rgba(168,61,42,.2),transparent 50%);
}
.hero-content{
  text-align:center;
  z-index:2;
  position:relative;
  max-width:1100px;
}
.hero-eyebrow{
  font-family:'Caveat',cursive;
  font-size:1.8rem;
  color:var(--gold-bright);
  margin-bottom:1rem;
  opacity:0;
  animation:fadeUp 1s .2s forwards;
}
.hero h1{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(3.5rem,10vw,8.5rem);
  font-weight:500;
  line-height:.95;
  letter-spacing:-.02em;
  margin-bottom:2rem;
  opacity:0;
  animation:fadeUp 1.2s .4s forwards;
}
.hero h1 em{
  font-style:italic;
  color:var(--gold);
  font-weight:400;
}
.hero-desc{
  font-size:1.15rem;
  max-width:600px;
  margin:0 auto 3rem;
  color:var(--text-muted);
  opacity:0;
  animation:fadeUp 1s .8s forwards;
  font-weight:300;
}
.hero-cta{
  display:flex;
  gap:1.5rem;
  justify-content:center;
  flex-wrap:wrap;
  opacity:0;
  animation:fadeUp 1s 1s forwards;
}
.btn-primary,.btn-secondary{
  padding:1rem 2.5rem;
  font-size:.85rem;
  letter-spacing:.25em;
  text-transform:uppercase;
  text-decoration:none;
  font-weight:500;
  transition:all .4s ease;
  border:1px solid;
  cursor:pointer;
  font-family:inherit;
  display:inline-block;
}
.btn-primary{
  background:var(--gold);
  color:var(--bg);
  border-color:var(--gold);
}
.btn-primary:hover{
  background:var(--gold-bright);
  transform:translateY(-2px);
  box-shadow:0 10px 30px rgba(212,164,74,.3);
}
.btn-secondary{
  background:transparent;
  color:var(--cream);
  border-color:var(--cream-soft);
}
.btn-secondary:hover{
  background:var(--cream);
  color:var(--bg);
}

.hero-ornament{
  position:absolute;
  font-family:'Cormorant Garamond',serif;
  font-size:14rem;
  color:rgba(212,164,74,.05);
  z-index:1;
  font-weight:700;
  pointer-events:none;
}
.hero-ornament.left{top:25%;left:-2rem;transform:rotate(-15deg)}
.hero-ornament.right{bottom:10%;right:-2rem;transform:rotate(10deg)}

.scroll-indicator{
  position:absolute;
  bottom:2rem;
  left:50%;
  transform:translateX(-50%);
  color:var(--text-muted);
  font-size:.7rem;
  letter-spacing:.3em;
  text-transform:uppercase;
  opacity:0;
  animation:fadeUp 1s 1.5s forwards,bounce 2s 2s infinite;
}

@keyframes fadeUp{
  from{opacity:0;transform:translateY(30px)}
  to{opacity:1;transform:translateY(0)}
}
@keyframes bounce{
  0%,100%{transform:translate(-50%,0)}
  50%{transform:translate(-50%,-10px)}
}

/* SECTION GENERICS */
section{
  padding:8rem 3rem;
  position:relative;
  z-index:2;
}
.section-label{
  font-family:'Caveat',cursive;
  font-size:1.4rem;
  color:var(--gold);
  margin-bottom:1rem;
  display:block;
}
.section-title{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2.5rem,6vw,5rem);
  font-weight:500;
  line-height:1;
  letter-spacing:-.02em;
  margin-bottom:2rem;
}
.section-title em{font-style:italic;color:var(--gold)}

/* REVEAL ANIMATIONS */
.reveal{
  opacity:0;
  transform:translateY(40px);
  transition:opacity .9s ease,transform .9s ease;
}
.reveal.in{
  opacity:1;
  transform:translateY(0);
}
.reveal-left{
  opacity:0;
  transform:translateX(-40px);
  transition:all .9s ease;
}
.reveal-left.in{opacity:1;transform:translateX(0)}
.reveal-right{
  opacity:0;
  transform:translateX(40px);
  transition:all .9s ease;
}
.reveal-right.in{opacity:1;transform:translateX(0)}

/* STORY SECTION */
.story{
  background:var(--bg-deep);
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:5rem;
  align-items:center;
  max-width:1400px;
  margin:0 auto;
}
.story-image{
  aspect-ratio:4/5;
  border-radius:2px;
  background:linear-gradient(135deg,#3a2419,#1a0f0a);
  overflow:hidden;
  position:relative;
}
.story-image img{width:100%;height:100%;object-fit:cover;transition:transform 1.2s ease}
.story-image:hover img{transform:scale(1.05)}
.story-image::after{
  content:'';
  position:absolute;
  inset:0;
  border:1px solid var(--gold);
  transform:translate(20px,20px);
  pointer-events:none;
}
.story-text p{
  font-size:1.05rem;
  color:var(--text-muted);
  margin-bottom:1.5rem;
  line-height:1.8;
}
.story-stats{
  display:flex;
  gap:3rem;
  margin-top:3rem;
  padding-top:3rem;
  border-top:1px solid var(--border);
}
.stat-num{
  font-family:'Cormorant Garamond',serif;
  font-size:3.5rem;
  color:var(--gold);
  font-weight:500;
  line-height:1;
}
.stat-label{
  font-size:.75rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--text-muted);
  margin-top:.5rem;
}

/* MENU/SPECIALITIES */
.menu{
  background:var(--bg);
  text-align:center;
}
.menu-header{margin-bottom:5rem}
.menu-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2.5rem;
  max-width:1400px;
  margin:0 auto;
}
.dish-card{
  background:var(--bg-soft);
  border:1px solid var(--border);
  padding:0;
  text-align:left;
  position:relative;
  overflow:hidden;
  transition:all .5s ease;
}
.dish-card:hover{
  transform:translateY(-8px);
  border-color:var(--gold);
  box-shadow:0 20px 60px rgba(0,0,0,.4);
}
.dish-image{
  aspect-ratio:4/3;
  overflow:hidden;
  background:#1a0f0a;
}
.dish-image img{
  width:100%;height:100%;
  object-fit:cover;
  transition:transform .8s ease;
}
.dish-card:hover .dish-image img{transform:scale(1.1)}
.dish-info{padding:2rem}
.dish-name{
  font-family:'Cormorant Garamond',serif;
  font-size:1.8rem;
  font-weight:500;
  margin-bottom:.5rem;
}
.dish-name em{color:var(--gold);font-style:italic}
.dish-desc{
  font-size:.95rem;
  color:var(--text-muted);
  line-height:1.6;
}
.dish-tag{
  display:inline-block;
  font-family:'Caveat',cursive;
  font-size:1.1rem;
  color:var(--gold);
  margin-bottom:.5rem;
}

/* MENU CTA BUTTON */
.menu-cta{
  margin-top:4rem;
  text-align:center;
}
.menu-cta .btn-primary{
  padding:1.1rem 3rem;
  font-size:.9rem;
  letter-spacing:.25em;
}

/* REVIEWS / TESTIMONIALS */
.reviews{
  background:var(--bg-deep);
  position:relative;
  overflow:hidden;
}
.reviews::before{
  content:'"';
  position:absolute;
  font-family:'Cormorant Garamond',serif;
  font-size:30rem;
  color:rgba(212,164,74,.04);
  top:-5rem;left:-2rem;
  line-height:1;
  font-weight:700;
}
.reviews-container{
  max-width:1200px;
  margin:0 auto;
  text-align:center;
  position:relative;
}
.review-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:2rem;
  margin-top:4rem;
}
.review-card{
  background:rgba(245,234,213,.03);
  border:1px solid var(--border);
  padding:2.5rem 2rem;
  text-align:left;
  transition:all .4s ease;
}
.review-card:hover{
  background:rgba(245,234,213,.06);
  border-color:var(--gold);
}
.stars{
  color:var(--gold);
  letter-spacing:.2em;
  margin-bottom:1.5rem;
  font-size:1.1rem;
}
.review-text{
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-size:1.15rem;
  line-height:1.6;
  color:var(--cream);
  margin-bottom:1.5rem;
}
.review-author{
  font-size:.8rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--gold);
}

/* CONTACT / LOCATION */
.contact{
  background:var(--bg);
}
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:4rem;
  max-width:1400px;
  margin:0 auto;
}
.contact-info h2{margin-bottom:3rem}
.info-block{
  margin-bottom:2.5rem;
  padding-bottom:2.5rem;
  border-bottom:1px solid var(--border);
}
.info-block:last-of-type{border-bottom:none}
.info-label{
  font-family:'Caveat',cursive;
  font-size:1.3rem;
  color:var(--gold);
  margin-bottom:.5rem;
}
.info-content{
  font-family:'Cormorant Garamond',serif;
  font-size:1.6rem;
  font-weight:500;
  color:var(--cream);
  line-height:1.4;
}
.info-content a{
  color:var(--cream);
  text-decoration:none;
  border-bottom:1px solid transparent;
  transition:border-color .3s;
}
.info-content a:hover{border-color:var(--gold);color:var(--gold)}

.hours-list{
  list-style:none;
  font-family:'Manrope',sans-serif;
}
.hours-list li{
  display:flex;
  justify-content:space-between;
  padding:.5rem 0;
  font-size:.95rem;
  color:var(--text-muted);
  border-bottom:1px dashed rgba(212,164,74,.1);
}
.hours-list li.closed{color:var(--red)}
.hours-list .day{letter-spacing:.1em;text-transform:uppercase;font-size:.8rem}

.map-container{
  position:relative;
  aspect-ratio:1/1;
  border:1px solid var(--border);
  overflow:hidden;
}
.map-container::after{
  content:'';
  position:absolute;
  inset:0;
  border:1px solid var(--gold);
  transform:translate(15px,15px);
  pointer-events:none;
  z-index:-1;
}
.map-container iframe{
  width:100%;height:100%;
  filter:grayscale(.3) sepia(.2) brightness(.85);
  border:none;
}

/* CTA BAND */
.cta-band{
  background:var(--bg-deep);
  padding:6rem 3rem;
  text-align:center;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.cta-band h2{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2rem,5vw,3.5rem);
  font-weight:500;
  margin-bottom:1.5rem;
}
.cta-band h2 em{color:var(--gold);font-style:italic}
.cta-phone{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2.5rem,6vw,4.5rem);
  color:var(--gold);
  text-decoration:none;
  display:inline-block;
  margin-top:1rem;
  letter-spacing:.05em;
  transition:all .3s ease;
}
.cta-phone:hover{
  color:var(--gold-bright);
  transform:scale(1.03);
}

/* FOOTER */
footer{
  background:var(--bg-deep);
  padding:4rem 3rem 2rem;
  text-align:center;
  border-top:1px solid var(--border);
}
.footer-logo{
  font-family:'Cormorant Garamond',serif;
  font-size:2.5rem;
  color:var(--gold);
  margin-bottom:1rem;
  letter-spacing:.15em;
}
.footer-tagline{
  font-family:'Caveat',cursive;
  font-size:1.3rem;
  color:var(--text-muted);
  margin-bottom:2rem;
}
.footer-links{
  display:flex;
  gap:2rem;
  justify-content:center;
  flex-wrap:wrap;
  color:var(--text-muted);
  font-size:.9rem;
}
.footer-bottom{
  padding-top:2rem;
  border-top:1px solid var(--border);
  margin-top:3rem;
  font-size:.75rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--text-muted);
}

/* RESPONSIVE */
@media(max-width:1024px){
  .menu-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:900px){
  nav{padding:1rem 1.5rem}
  nav.scrolled{padding:.8rem 1.5rem}
  .nav-links{display:none}
  section{padding:5rem 1.5rem}
  .story{grid-template-columns:1fr;gap:3rem}
  .story-image{order:-1;max-width:400px;margin:0 auto}
  .contact-grid{grid-template-columns:1fr;gap:3rem}
  .story-stats{gap:2rem;flex-wrap:wrap}
  .hero{padding:7rem 1.5rem 3rem}
  .hero-ornament{display:none}
  .menu-grid{grid-template-columns:1fr}
}
