/* ── Reset ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #c9a96e;
  --gold-light: #dfc08a;
  --dark: #0e0e16;
  --dark-card: #16161f;
  --dark-section: #111119;
  --text: #d4d4d8;
  --text-muted: #8e8e9a;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Raleway', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.75rem 2rem;
  transition: background 0.3s;
}

.nav.scrolled {
  background: rgba(14, 14, 22, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(201, 169, 110, 0.15);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 50px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.3s;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.3s, opacity 0.3s;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 14, 22, 0.7) 0%,
    rgba(14, 14, 22, 0.5) 40%,
    rgba(14, 14, 22, 0.8) 100%
  );
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 2rem;
}

.hero-logo {
  width: 120px;
  height: auto;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
}

.hero-tagline {
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.15em;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  margin-top: 1.25rem;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
}

/* ── Sections ── */
.section {
  padding: 6rem 2rem;
}

.section-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 600;
  text-align: center;
  color: #fff;
  margin-bottom: 1rem;
}

.section-title.left {
  text-align: left;
}

.section-divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 3rem;
}

.section-divider.left {
  margin-left: 0;
}

/* ── About ── */
.about {
  background: var(--dark-section);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
  overflow: hidden;
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 169, 110, 0.2);
  pointer-events: none;
}

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

.about-copy p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

/* ── Features ── */
.features-section {
  background: var(--dark);
}

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

.feature {
  background: var(--dark-card);
  border: 1px solid rgba(201, 169, 110, 0.1);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.feature:hover {
  border-color: rgba(201, 169, 110, 0.3);
  transform: translateY(-3px);
}

.feature-img {
  overflow: hidden;
  height: 200px;
}

.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.feature:hover .feature-img img {
  transform: scale(1.05);
}

.feature-body {
  padding: 1.5rem;
  text-align: center;
}

.feature-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.feature-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Menu ── */
.menu {
  background: var(--dark-section);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.menu-category h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.menu-item {
  margin-bottom: 1.25rem;
}

.item-name {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 0.2rem;
}

.item-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.menu-note {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ── Gallery ── */
.gallery {
  background: var(--dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}

.gallery-item {
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

/* ── Visit ── */
.visit {
  background: var(--dark-section);
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 750px;
  margin: 0 auto;
}

.visit-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--dark-card);
  border: 1px solid rgba(201, 169, 110, 0.1);
}

.visit-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.visit-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.visit-social-text {
  margin-bottom: 1.25rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.6rem 1.1rem;
  border: 1px solid rgba(201, 169, 110, 0.25);
  transition: all 0.3s;
}

.social-links a svg {
  flex-shrink: 0;
}

.social-links a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ── Footer ── */
.footer {
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.footer-logo {
  height: 50px;
  width: auto;
  margin: 0 auto 1rem;
  opacity: 0.6;
}

.footer p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── Mobile ── */
@media (max-width: 900px) {
  .features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature {
    display: grid;
    grid-template-columns: 140px 1fr;
  }

  .feature-img {
    height: 100%;
  }

  .feature-body {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(14, 14, 22, 0.97);
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image img {
    height: 280px;
  }

  .about-copy .section-title,
  .about-copy .section-divider {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .feature {
    grid-template-columns: 1fr;
  }

  .feature-img {
    height: 200px;
  }

  .feature-body {
    text-align: center;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }

  .gallery-item.tall {
    grid-row: span 1;
  }

  .gallery-item.wide {
    grid-column: span 2;
  }

  .visit-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .social-links {
    flex-direction: column;
    align-items: center;
  }

  .section {
    padding: 4rem 1.5rem;
  }

  .hero-logo {
    width: 90px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .gallery-item.wide {
    grid-column: span 1;
  }
}
