/* ===== Base ===== */
:root{
  --brand-red: #c8102e;
  --brand-red-dark: #9c0c22;
  --brand-gold: #e0a530;
  --ink: #2a1f1a;
  --ink-soft: #5a4d44;
  --cream: #fdf8f1;
  --cream-alt: #f7ede0;
  --line: #e7dcc9;
  --shadow: 0 12px 30px rgba(42,31,26,0.15);
  --radius-lg: 20px;
  --radius-pill: 999px;
  font-size: 16px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color:var(--ink);
  background:var(--cream);
  line-height:1.6;
}
h1,h2,h3{
  font-family:'Fraunces', Georgia, serif;
  margin:0 0 0.5em;
  line-height:1.15;
}
p{margin:0 0 1em;}
img{max-width:100%; display:block;}
a{color:inherit;}
.container{
  width:100%;
  max-width:1180px;
  margin:0 auto;
  padding:0 24px;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
}
.skip-link:focus{
  left:12px;
  top:12px;
  background:#fff;
  padding:8px 14px;
  border-radius:8px;
  z-index:999;
}

/* ===== Buttons ===== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-family:'Nunito Sans', sans-serif;
  font-weight:800;
  text-decoration:none;
  cursor:pointer;
  border:none;
  border-radius:var(--radius-pill);
  padding:12px 26px;
  font-size:0.95rem;
  letter-spacing:0.02em;
  transition:transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space:nowrap;
}
.btn-order{
  background:var(--brand-red);
  color:#fff;
  box-shadow:0 6px 18px rgba(200,16,46,0.4);
}
.btn-order:hover{
  background:var(--brand-red-dark);
  transform:translateY(-2px);
  box-shadow:0 10px 22px rgba(200,16,46,0.45);
}
.btn-lg{
  padding:16px 36px;
  font-size:1.05rem;
}
.btn-outline{
  background:transparent;
  color:#fff;
  border:2px solid rgba(255,255,255,0.85);
}
.btn-outline:hover{
  background:rgba(255,255,255,0.15);
}

/* ===== Header ===== */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(253,248,241,0.96);
  backdrop-filter:blur(6px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding-top:14px;
  padding-bottom:14px;
}
.logo{
  font-family:'Fraunces', serif;
  font-weight:900;
  font-size:1.5rem;
  text-decoration:none;
  color:var(--ink);
  white-space:nowrap;
}
.logo span{color:var(--brand-red);}
.main-nav{
  display:flex;
  gap:28px;
  flex:1;
  justify-content:center;
}
.main-nav a{
  text-decoration:none;
  font-weight:700;
  font-size:0.95rem;
  color:var(--ink-soft);
  transition:color 0.15s ease;
}
.main-nav a:hover{color:var(--brand-red);}

.nav-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:38px;
  height:38px;
  background:none;
  border:none;
  cursor:pointer;
  padding:0;
}
.nav-toggle span{
  display:block;
  height:3px;
  width:100%;
  background:var(--ink);
  border-radius:3px;
}
.mobile-nav{
  display:none;
  flex-direction:column;
  gap:14px;
  padding:16px 24px 24px;
  border-top:1px solid var(--line);
}
.mobile-nav a{
  text-decoration:none;
  font-weight:700;
  color:var(--ink-soft);
  padding:6px 0;
}
.mobile-nav .btn{margin-top:6px; width:100%;}

.site-header.nav-open .mobile-nav{display:flex;}

@media (max-width:860px){
  .main-nav{display:none;}
  .header-inner .btn-order{display:none;}
  .nav-toggle{display:flex;}
}

/* ===== Hero ===== */
.hero{
  position:relative;
  min-height:88vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  color:#fff;
}
.hero-media{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(30,16,12,0.55) 0%, rgba(30,16,12,0.55) 40%, rgba(20,10,8,0.85) 100%);
}
.hero-content{
  position:relative;
  z-index:2;
  padding-top:80px;
  padding-bottom:80px;
  max-width:760px;
}
.hero-eyebrow{
  text-transform:uppercase;
  letter-spacing:0.14em;
  font-weight:800;
  font-size:0.85rem;
  color:var(--brand-gold);
  margin-bottom:14px;
}
.hero h1{
  font-size:clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom:20px;
  text-shadow:0 3px 20px rgba(0,0,0,0.35);
}
.hero-sub{
  font-size:1.1rem;
  max-width:600px;
  color:rgba(255,255,255,0.92);
}
.hero-cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin:28px 0 22px;
}
.hero-rating{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  font-size:0.95rem;
}
.hero-rating .stars{color:var(--brand-gold); font-size:1.2rem; letter-spacing:2px;}

/* ===== Section shared ===== */
section{padding:88px 0;}
.section-eyebrow{
  text-transform:uppercase;
  letter-spacing:0.14em;
  font-weight:800;
  font-size:0.85rem;
  color:var(--brand-red);
  margin-bottom:10px;
}
.section-sub{
  color:var(--ink-soft);
  max-width:560px;
  margin:0 auto 40px;
}
.center{text-align:center; margin-left:auto; margin-right:auto;}
section h2{font-size:clamp(1.8rem, 3.4vw, 2.6rem);}

/* ===== About ===== */
.about{background:var(--cream);}
.about-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:60px;
  align-items:center;
}
.about-copy p{color:var(--ink-soft);}
.about-media{position:relative;}
.about-media img{
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
  aspect-ratio:4/5;
  object-fit:cover;
  width:100%;
}
.about-badge{
  position:absolute;
  bottom:-24px;
  right:-24px;
  background:#fff;
  border-radius:16px;
  padding:16px 20px;
  box-shadow:var(--shadow);
  text-align:center;
  line-height:1.2;
}
.about-badge strong{
  display:block;
  font-family:'Fraunces', serif;
  font-size:1.8rem;
  color:var(--brand-red);
}
.about-badge span{color:var(--brand-gold); font-size:0.9rem;}
.about-badge small{display:block; color:var(--ink-soft); font-size:0.75rem; margin-top:2px;}

@media (max-width:860px){
  .about-grid{grid-template-columns:1fr; gap:60px;}
  .about-media{order:-1;}
  .about-badge{right:12px; bottom:-18px;}
}

/* ===== Menu ===== */
.menu{background:var(--cream-alt);}
.menu-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
  gap:28px;
  margin-top:48px;
}
.menu-category{
  background:#fff;
  border-radius:var(--radius-lg);
  padding:30px 28px;
  box-shadow:var(--shadow);
  border-top:4px solid var(--brand-red);
}
.menu-category h3{
  font-size:1.25rem;
  color:var(--brand-red-dark);
}
.menu-note{
  font-size:0.85rem;
  color:var(--ink-soft);
  margin-bottom:16px;
  font-style:italic;
}
.menu-category ul{
  list-style:none;
  margin:0;
  padding:0;
}
.menu-category li{
  display:flex;
  justify-content:space-between;
  gap:10px;
  padding:10px 0;
  border-bottom:1px dashed var(--line);
  font-weight:700;
}
.menu-category li:last-child{border-bottom:none;}
.menu-category li em{
  font-style:normal;
  color:var(--brand-gold);
  font-weight:800;
}
.menu-cta{text-align:center; margin-top:48px;}

/* ===== Gallery ===== */
.gallery{background:var(--cream);}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:16px;
  margin-top:48px;
}
.gallery-grid img{
  width:100%;
  height:230px;
  object-fit:cover;
  border-radius:14px;
  box-shadow:0 6px 16px rgba(42,31,26,0.12);
  transition:transform 0.25s ease;
}
.gallery-grid img:hover{transform:scale(1.03);}

@media (max-width:900px){
  .gallery-grid{grid-template-columns:repeat(2, 1fr);}
}
@media (max-width:520px){
  .gallery-grid img{height:180px;}
}

/* ===== Reviews ===== */
.reviews{background:var(--cream-alt);}
.reviews-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:26px;
  margin-top:44px;
}
.review-card{
  background:#fff;
  border-radius:var(--radius-lg);
  padding:30px;
  box-shadow:var(--shadow);
}
.review-stars{color:var(--brand-gold); letter-spacing:2px; margin-bottom:14px;}
.review-card p{color:var(--ink-soft); font-size:0.98rem;}
.review-card strong{color:var(--brand-red-dark);}
.reviews-footnote{
  text-align:center;
  margin-top:36px;
  font-weight:700;
  color:var(--ink-soft);
}

/* ===== Location ===== */
.location{background:var(--cream);}
.location-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:stretch;
}
.location-info address{
  font-style:normal;
  font-size:1.1rem;
  margin-bottom:10px;
  color:var(--ink-soft);
}
.phone-link{
  display:inline-block;
  font-weight:800;
  font-size:1.2rem;
  color:var(--brand-red);
  text-decoration:none;
  margin-bottom:26px;
}
.hours-table{
  width:100%;
  border-collapse:collapse;
  margin-bottom:32px;
}
.hours-table th, .hours-table td{
  text-align:left;
  padding:9px 0;
  border-bottom:1px solid var(--line);
  font-weight:700;
}
.hours-table th{color:var(--ink);}
.hours-table td{color:var(--ink-soft); text-align:right; font-weight:600;}
.location-map{
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow);
  min-height:340px;
}

@media (max-width:860px){
  .location-grid{grid-template-columns:1fr;}
  .location-map{min-height:300px;}
}

/* ===== Footer ===== */
.site-footer{
  background:var(--ink);
  color:#f2e9dd;
  padding-top:56px;
}
.footer-inner{
  display:flex;
  flex-wrap:wrap;
  gap:32px;
  justify-content:space-between;
  align-items:center;
  padding-bottom:32px;
  border-bottom:1px solid rgba(255,255,255,0.12);
}
.footer-brand .logo{color:#fff;}
.footer-brand p{margin:6px 0; color:rgba(242,233,221,0.75); font-size:0.92rem;}
.footer-brand a{
  color:var(--brand-gold);
  text-decoration:none;
  font-weight:700;
}
.footer-nav{display:flex; gap:22px; flex-wrap:wrap;}
.footer-nav a{
  text-decoration:none;
  color:rgba(242,233,221,0.85);
  font-weight:700;
  font-size:0.92rem;
}
.footer-nav a:hover{color:var(--brand-gold);}
.footer-bottom{
  padding:22px 24px 30px;
  text-align:center;
  font-size:0.82rem;
  color:rgba(242,233,221,0.55);
}

/* ===== Modal ===== */
.modal-backdrop{
  position:fixed;
  inset:0;
  background:rgba(20,12,10,0.65);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  z-index:1000;
}
.modal-backdrop[hidden]{display:none;}
.modal{
  position:relative;
  background:#fff;
  border-radius:var(--radius-lg);
  padding:44px 38px;
  max-width:440px;
  width:100%;
  text-align:center;
  box-shadow:0 20px 60px rgba(0,0,0,0.35);
}
.modal h2{
  font-size:1.5rem;
  color:var(--brand-red-dark);
  margin-bottom:14px;
}
.modal p{color:var(--ink-soft); margin-bottom:26px;}
.modal-close{
  position:absolute;
  top:14px;
  right:16px;
  background:none;
  border:none;
  font-size:1.8rem;
  line-height:1;
  cursor:pointer;
  color:var(--ink-soft);
  padding:4px 8px;
  border-radius:8px;
}
.modal-close:hover{background:var(--cream-alt); color:var(--ink);}

@media (max-width:520px){
  .hero-cta-row{flex-direction:column; align-items:flex-start;}
  .hero-cta-row .btn{width:100%; justify-content:center;}
}
