* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #000;
  color: #fff;
  font: 400 14px/1.6 'Roboto Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  overflow-x: hidden;
}

h1, h2, h3 { margin: 0 0 0.6em; font-family: 'Roboto Condensed', sans-serif; font-weight: 400; }

p { margin: 0 0 1em; }

a { color: #999; text-decoration: none; }
a:hover { color: #fff; }

/* Hamburger / close controls */
.showHideMenu {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(0,0,0,0.3);
}

#showMenu {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 60;
}

#showMenu span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  margin: 3px 0;
}

#hideMenu {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 28px;
  line-height: 1;
  font-family: Arial, sans-serif;
}

/* Slide-out nav */
#navBlock {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100%;
  background: rgba(20,20,20,0.97);
  border-left: 1px solid rgba(255,255,255,0.1);
  z-index: 50;
  transition: right 0.35s ease;
}

#navBlock.open { right: 0; }

#navBlock .navTop { height: 92px; position: relative; }

#navBlock .mainMenu {
  list-style: none;
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

#navBlock .mainMenu li { border-bottom: 1px solid rgba(255,255,255,0.08); }

#navBlock .mainMenu a {
  display: block;
  padding: 18px 40px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: background 0.2s ease, padding-left 0.2s ease;
}

#navBlock .mainMenu a:hover { background: rgba(255,255,255,0.06); padding-left: 48px; }

/* Header */
#headerBlock {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent);
}

#logoBar { padding: 24px 0 24px 32px; }

#logoBar a span {
  display: inline-block;
  font-size: 26px;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.06em;
}

/* Hero */
#homeBannerBlock {
  width: 100%;
  height: 100vh;
  min-height: 560px;
  position: relative;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 30% 30%, #1c1c1c, #000 70%);
}

.bannerSlideTxt {
  padding: 0 8%;
  max-width: 640px;
}

.bannerSlideTxt .eyebrow {
  color: #b8925a;
  font-size: 13px;
  letter-spacing: 0.2em;
  margin-bottom: 1.2em;
}

.bannerSlideTxt h1 {
  font-size: 88px;
  line-height: 0.95;
  color: #fff;
  margin-bottom: 0.4em;
}

.bannerSlideTxt .sub {
  font-size: 15px;
  letter-spacing: 0.04em;
  color: #ccc;
  max-width: 460px;
}

/* Content blocks */
.mainBlock {
  width: 100%;
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.mainBlock.alt { background: #0c0c0c; }

.contentBar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6em 8%;
}

.contentBar.narrow { max-width: 760px; }

.contentBar.center { text-align: center; }

.contentBar h2 {
  font-size: 34px;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 1em;
}

.contentBar p { color: #ccc; letter-spacing: 0.02em; }

blockquote {
  margin: 0 0 1.4em;
  padding-left: 24px;
  border-left: 2px solid #b8925a;
  font-size: 20px;
  color: #fff;
  text-transform: none;
  letter-spacing: 0.01em;
}

/* About */
.aboutBar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4em;
  align-items: center;
  max-width: 1100px;
}

.aboutImage img {
  width: 100%;
  display: block;
  filter: grayscale(15%);
}

/* Gallery */
.galleryGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
}

.galleryItem {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.galleryItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: grayscale(10%);
}

.galleryItem:hover img {
  transform: scale(1.06);
  filter: grayscale(0%);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 100;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

.lightboxClose {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  font-family: Arial, sans-serif;
}

/* Restaurant cards */
.cardGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
}

.cardItem {
  background: #0c0c0c;
  padding: 2.2em;
}

.mainBlock.alt .cardItem { background: #000; }

.cardItem h3 { font-size: 19px; letter-spacing: 0.05em; color: #fff; }

.cardItem .tag {
  color: #b8925a;
  font-size: 12px;
  letter-spacing: 0.1em;
  margin-bottom: 1em;
}

.cardItem p:last-child { color: #999; margin-bottom: 0; }

/* Press list */
.pressList { list-style: none; margin: 0; padding: 0; }

.pressList li { border-bottom: 1px solid rgba(255,255,255,0.08); }

.pressList a {
  display: block;
  padding: 1.1em 0;
  color: #ddd;
  letter-spacing: 0.02em;
  transition: color 0.15s ease, padding-left 0.15s ease;
}

.pressList a:hover { color: #b8925a; padding-left: 8px; }

/* Contact */
.contactLinks {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.igLink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #fff;
  color: #fff;
  padding: 14px 28px;
  letter-spacing: 0.08em;
  transition: background 0.2s ease, color 0.2s ease;
}

.igLink:hover { background: #fff; color: #000; }

/* Footer */
#footerBlock { background: #000; border-top: 1px solid rgba(255,255,255,0.08); }

.footerBar { max-width: 1200px; margin: 0 auto; padding: 3em 8%; text-align: center; }

.footerBar h3 { font-size: 18px; letter-spacing: 0.1em; color: #fff; }

.footerBar p { color: #666; font-size: 11px; letter-spacing: 0.06em; margin: 0; }

@media (max-width: 820px) {
  .bannerSlideTxt h1 { font-size: 56px; }
  .cardGrid { grid-template-columns: 1fr; }
  .aboutBar { grid-template-columns: 1fr; gap: 2.5em; }
  .aboutImage { order: -1; }
  .galleryGrid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .bannerSlideTxt h1 { font-size: 42px; }
  .contentBar { padding: 4em 6%; }
  #logoBar a span { font-size: 20px; }
}
