:root {
  --black: #0f0d0b;
  --charcoal: #1b1713;
  --gold: #c89a43;
  --gold-light: #e1b85a;
  --white: #f5f2eb;
  --muted: #b6aa98;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background: var(--black);
  color: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 78px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 10, 0.88);
  border-bottom: 1px solid rgba(214, 168, 79, 0.25);
  z-index: 10;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 64px;
  width: auto;
  display: block;
}
nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
}

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

.nav-btn {
  background: var(--gold);
  color: #111;
  padding: 12px 20px;
  font-weight: 700;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  grid-template-columns: 32% 68%;
  align-items: center;
  gap: 42px;
  padding: 118px 6% 70px;
  background: linear-gradient(135deg,#090909 0%,#17130f 55%,#090909 100%);
  overflow: hidden;
}

/* Old full-screen overlay disabled for split hero layout */
.hero-overlay {
  display: none;
}


.hero-image{
  width:100%;
  height:min(72vh,690px);
  overflow:hidden;
  border:1px solid rgba(214,168,79,.18);
  box-shadow:0 24px 70px rgba(0,0,0,.42);
}
.hero-image img{
 width:100%;
 height:100%;
 object-fit:cover;
 display:block;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 470px;
  grid-column: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(56px, 6.5vw, 112px);
  line-height: 0.88;
  margin-bottom: 28px;
}

.hero h1 span {
  display: block;
  margin-top: 18px;
  font-size: 0.38em;
  font-weight: 400;
  letter-spacing: 4px;
  line-height: 1.3;
  color: var(--gold);
  text-transform: uppercase;
}

.subtitle {
  font-size: 22px;
  color: #ddd;
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.btn {
  padding: 16px 28px;
  font-weight: 800;
  border: 1px solid var(--gold);
}

.primary {
  background: var(--gold);
  color: #111;
}

.secondary {
  background: transparent;
  color: var(--gold);
}

.section {
  padding: 110px 8%;
  text-align: center;
}

.section h2,
.split-section h2,
.info-section h2 {
  font-size: 44px;
  margin-bottom: 36px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card {
  background: var(--charcoal);
  border: 1px solid rgba(214, 168, 79, 0.22);
  text-align: left;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.card h3 {
  font-size: 24px;
  padding: 22px 22px 10px;
}

.card p {
  color: var(--muted);
  padding: 0 22px 28px;
  line-height: 1.6;
}

.split-section {
  padding: 110px 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: #151515;
}

.split-section p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 18px;
}

.about-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.dark {
  background: #0d0d0d;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.features div {
  border: 1px solid rgba(214, 168, 79, 0.25);
  padding: 34px;
  background: #171717;
}

.features h3 {
  color: var(--gold);
  margin-bottom: 12px;
}

.features p {
  color: var(--muted);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.gallery img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.info-section {
  padding: 90px 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--charcoal);
}

.info-section p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 10px;
}

.note {
  color: var(--gold) !important;
  margin-top: 20px;
}

footer {
  padding: 42px 8%;
  text-align: center;
  background: #080808;
  border-top: 1px solid rgba(214, 168, 79, 0.25);
}

footer h3 {
  color: var(--gold);
  margin-bottom: 10px;
}

footer p {
  color: var(--muted);
}

@media (max-width: 900px) {
  .navbar {
    height: auto;
    padding: 18px 6%;
    flex-direction: column;
    gap: 16px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .cards,
  .features,
  .gallery,
  .split-section,
  .info-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 150px 6% 60px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-image{height:420px;}

  .hero-content {
    grid-column: 1;
    max-width: 100%;
  }

  .hero h1 span {
    font-size: 0.34em;
    letter-spacing: 2.5px;
    margin-top: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 220px;
  }
}

.menu-cards{grid-template-columns:repeat(5,1fr);}
.card{cursor:pointer;transition:transform .2s,border-color .2s;}
.card:hover{transform:translateY(-6px);border-color:var(--gold);}
.menu-modal{display:none;position:fixed;inset:0;z-index:999;background:rgba(0,0,0,.88);justify-content:center;align-items:center;padding:40px;}
.menu-modal img{max-width:95%;max-height:90vh;object-fit:contain;background:#fff;}
.close-menu{position:fixed;top:20px;right:30px;font-size:42px;color:#fff;cursor:pointer;}
@media(max-width:1100px){.menu-cards{grid-template-columns:repeat(2,1fr);}}
@media(max-width:600px){.menu-cards{grid-template-columns:1fr;}}


.reserve-btn{
  background: transparent;
  color: var(--gold);
  border:1px solid var(--gold);
}
.reserve-btn:hover{
  background: var(--gold);
  color:#111;
}
