* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  color: #161616;
  background: #fbfaf7;
}

a { color: inherit; }

.hero {
  min-height: 94vh;
  background:
    linear-gradient(rgba(0,0,0,.72), rgba(0,0,0,.78)),
    radial-gradient(circle at top, #4c3511, #050505 68%);
  color: white;
  padding: 24px;
}

.topbar {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}


.brand img {
  width: 105px;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0,0,0,.28);
}


.nav-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links a {
  color: #f8e6b1;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: .9rem;
  font-weight: bold;
}

.hero-content {
  max-width: 940px;
  margin: 12vh auto 0;
  text-align: center;
}

.eyebrow {
  color: #d6b45f;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: .88rem;
  font-weight: bold;
}

.dark-text { color: #8d6817; }

h1 {
  font-size: clamp(3.4rem, 8vw, 7.7rem);
  line-height: .9;
  margin: 20px 0;
}

h2 {
  font-size: clamp(2.25rem, 4vw, 4.5rem);
  line-height: 1;
  margin: 0 0 20px;
}

.subtitle,
.intro p,
.section-note,
.contact p {
  font-size: 1.18rem;
  line-height: 1.7;
  max-width: 780px;
  margin: 0 auto 30px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.button,
button {
  display: inline-block;
  border: none;
  padding: 15px 28px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
}

.gold,
button {
  background: #d6b45f;
  color: #111;
}

.outline {
  border: 1px solid #d6b45f;
  color: #d6b45f;
  background: transparent;
}

.section,
.intro {
  padding: 78px 24px;
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.reservation-form {
  max-width: 760px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  text-align: left;
}

.reservation-form label {
  font-weight: bold;
  letter-spacing: .5px;
}

.reservation-form input,
.reservation-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  border: 1px solid #c8b98e;
  background: white;
  font-size: 1rem;
}

.reservation-form textarea {
  min-height: 120px;
}

.reservation-form .full,
.reservation-form button {
  grid-column: 1 / -1;
}

.dark {
  max-width: none;
  background: #0a0a0a;
  color: white;
}

.dark > * {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.hours-box {
  border: 1px solid rgba(214,180,95,.55);
  padding: 25px;
  background: rgba(255,255,255,.03);
}

.hours-box p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255,255,255,.15);
  padding: 14px 0;
  margin: 0;
  font-size: 1.1rem;
}

.hours-box p:last-child { border-bottom: none; }

.hours-box span { color: #d6b45f; }

.footer-logo {
  width: 170px;
  border-radius: 16px;
  margin-bottom: 22px;
  box-shadow: 0 12px 35px rgba(0,0,0,.16);
}

.contact a {
  color: #7b5b15;
  font-weight: bold;
}

footer {
  background: #050505;
  color: #d6b45f;
  text-align: center;
  padding: 22px;
}

@media (max-width: 800px) {
  .topbar {
    flex-direction: column;
  }

  
.brand img {
  width: 105px;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0,0,0,.28);
}


  .nav-links {
    gap: 15px;
  }

  .hero-content {
    margin-top: 8vh;
  }

  .reservation-form {
    grid-template-columns: 1fr;
  }

  .hours-box p {
    flex-direction: column;
    text-align: center;
  }
}
