:root {
  --bg: #0b0b0b;
  --bg-soft: #171515;
  --accent: #c58a4a;
  --accent-soft: #f3e1c8;
  --accent-green: #6c8b67;
  --text-main: #f5f2ec;
  --text-muted: #c9c3b8;
  --radius-xl: 26px;
  --radius-md: 14px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.5);
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
}

/* Global */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: radial-gradient(circle at top, #15100d 0%, #050505 65%);
  color: var(--text-main);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: radial-gradient(circle at top left, rgba(197,138,74,0.12), transparent),
              rgba(3, 3, 3, 0.9);
  border-bottom: 1px solid rgba(197, 138, 74, 0.14);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.brand-logo {
  width: 34px;
  height: 34px;
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--accent);
}

.nav {
  position: relative;
}

.nav-links {
  display: flex;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--accent);
}

/* Mobile nav */

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
}

/* Hero */

.hero {
  position: relative;
  padding-top: 88px;
  min-height: 90vh;
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.26;
  filter: grayscale(0.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(197, 138, 74, 0.22), transparent),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.85), #020202);
}

.hero-content {
  position: relative;
  padding: 4rem 1.5rem 3rem;
  max-width: 640px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  color: var(--accent-soft);
  margin: 0 0 0.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4vw, 3.1rem);
  margin: 0 0 1rem;
}

.hero-text {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 0.8rem;
}

.hero-hours {
  font-size: 0.85rem;
  color: var(--accent-soft);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.88rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn.primary {
  background: var(--accent);
  color: #111;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.6);
}

.btn.ghost {
  background: transparent;
  border-color: rgba(245, 242, 236, 0.5);
  color: var(--accent-soft);
}

.btn.ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn.outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.btn.outline:hover {
  background: var(--accent);
  color: #111;
}

.btn.full-width {
  width: 100%;
}

/* Sections */

.section {
  padding: 4.5rem 0;
  background: transparent;
}

.section:nth-of-type(even) {
  background: radial-gradient(circle at top, rgba(197,138,74,0.08), transparent);
}

.section h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.section-intro {
  margin: 0 0 2rem;
  max-width: 540px;
  color: var(--text-muted);
}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
  gap: 2.5rem;
  align-items: center;
}

.about-image-wrap img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

/* Menu */

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.menu-card {
  padding: 1.4rem 1.3rem 1.1rem;
  background: rgba(10, 8, 7, 0.98);
  border-radius: var(--radius-md);
  border: 1px solid rgba(197, 138, 74, 0.16);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.55);
}

.menu-card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
  color: var(--accent);
}

.menu-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.menu-card ul li + li {
  margin-top: 0.25rem;
}

.menu-full {
  margin-top: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  font-size: 0.9rem;
}

/* Gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(197, 138, 74, 0.18);
  box-shadow: var(--shadow-soft);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.04);
}

/* Location */

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.7fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.info-block {
  margin-bottom: 1.4rem;
  font-size: 0.95rem;
}

.text-link {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.86rem;
}

.text-link:hover {
  text-decoration: underline;
}

.map-embed iframe {
  width: 100%;
  height: 260px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(197, 138, 74, 0.18);
}

.map-note {
  margin-top: 0.4rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr);
  gap: 2.2rem;
  align-items: flex-start;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.contact-details a {
  color: var(--accent);
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.contact-form {
  padding: 1.8rem 1.6rem 1.5rem;
  background: rgba(8, 7, 6, 0.98);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(197, 138, 74, 0.16);
  box-shadow: var(--shadow-soft);
}

.form-row {
  margin-bottom: 1rem;
}

label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

input,
textarea {
  width: 100%;
  padding: 0.65rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(197, 138, 74, 0.26);
  background: #050505;
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(197, 138, 74, 0.18);
  background: #070707;
}

.form-status {
  margin-top: 0.6rem;
  font-size: 0.82rem;
  color: var(--accent-soft);
  min-height: 1em;
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(197, 138, 74, 0.16);
  padding: 1.5rem 0 2rem;
  background: #050505;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-credit {
  opacity: 0.7;
}

/* Responsive */

@media (max-width: 768px) {
  .header-inner {
    padding-inline: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    flex-direction: column;
    background: #050505;
    padding: 0.7rem 1.1rem 0.9rem;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.72);
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    min-height: 80vh;
  }

  .section {
    padding: 3.5rem 0;
  }

  .about-grid,
  .menu-grid,
  .gallery-grid,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
