:root {
  --black: #060605;
  --gold: #c9a24b;
  --gold-light: #e9d8a6;
  --cream: #ece4d3;
  --line: rgba(201, 162, 75, 0.35);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  line-height: 1.7;
}

h2 {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 2rem;
}

/* header / nav */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 1.5rem 0;
  background: linear-gradient(to bottom, rgba(6,6,5,0.9), transparent);
}

.nav {
  display: flex;
  justify-content: center;
  gap: 3rem;
}

.nav a {
  color: var(--gold);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav a:hover { color: var(--gold-light); }

/* hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.logo {
  width: min(600px, 85vw);
  height: auto;
  /*filter: drop-shadow(0 0 30px rgba(201, 162, 75, 0.15));*/
}

.logosm {
  width: min(150px, 85vw);
  height: auto;
  /*filter: drop-shadow(0 0 30px rgba(201, 162, 75, 0.15));*/
}


.tagline {
  margin-top: 0;
  color: var(--gold);
  font-style: italic;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}

.ornament-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  margin-bottom: 2rem;
}

.ornament-line.bottom {
  background: linear-gradient(to top, transparent, var(--gold));
  margin-top: 2rem;
  margin-bottom: 0;
}

.visit .ornament-line.top {
  margin: 0 auto 2rem;
}

/* about */
.about {
  padding: 6rem 2rem;
  display: flex;
  justify-content: center;
}

.section-frame {
  max-width: 620px;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 3rem 1rem;
}

.section-frame h2 { margin-bottom: 1.5rem; }

.hours {
  margin-top: 1.5rem;
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* gallery */
.gallery {
  padding: 4rem 2rem 6rem;
}

.gallery-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.gallery-item {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #111;
  padding: 0;
  cursor: pointer;
  display: block;
  width: 100%;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(15%);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.06);
  filter: grayscale(0%);
}

.gallery-item:focus-visible {
  outline: 1px solid var(--gold-light);
  outline-offset: 2px;
}

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(6, 6, 5, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}

.lightbox[hidden] { display: none; }

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border: 1px solid var(--line);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.5rem;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  color: var(--gold-light);
}

/* menu */
.menu {
  padding: 4rem 2rem 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-frame {
  width: 100%;
  max-width: 700px;
  height: 80vh;
  max-height: 900px;
  border: 1px solid var(--gold);
  padding: 6px;
  background: #0c0c0a;
  box-shadow: 0 0 40px rgba(201, 162, 75, 0.08);
}

.menu-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: #fff;
}

/* footer */
.visit {
  padding: 5rem 2rem 3rem;
  text-align: center;
  color: var(--cream);
}

.visit p { margin: 0.3rem 0; }

.knock {
  margin-top: 1rem;
  color: var(--gold);
  font-style: italic;
  font-size: 0.95rem;
}

.copyright {
  margin-top: 2.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: #5a5344;
}

/* responsive */
@media (max-width: 640px) {
  .nav { gap: 1.5rem; }
  .nav a { font-size: 0.65rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .menu-frame { height: 70vh; }
}

h1 {margin-bottom:0}
