@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Cardo:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --ink: #0d0805;
  --paper: #e7e8e2;
  --sand: #d5cbb0;
  --smoke: #cfcfcf;
  --shadow: rgba(0, 0, 0, 0.35);
  --accent: #7b5f3b;
  --radius: 18px;
  --serif: 'Cardo', 'Times New Roman', serif;
  --sans: 'Space Grotesk', 'Helvetica Neue', sans-serif;
}

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

body {
  font-family: var(--sans);
  color: var(--paper);
  background: radial-gradient(circle at 10% 20%, rgba(213, 203, 176, 0.1), transparent 25%),
    radial-gradient(circle at 90% 0%, rgba(24, 10, 13, 0.6), transparent 35%),
    linear-gradient(135deg, #16090d 0%, #0d0805 65%, #15080c 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

img {
  width: 100%;
  display: block;
  border-radius: calc(var(--radius) - 6px);
  object-fit: cover;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

nav {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  background: rgba(13, 8, 5, 0.75);
  border-bottom: 1px solid rgba(207, 207, 207, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sand);
}

.brand-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sand), var(--accent));
  box-shadow: 0 0 0 6px rgba(213, 203, 176, 0.12);
}

nav ul {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
}

nav li a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--paper);
  font-weight: 500;
  transition: all 0.2s ease;
}

nav li a:hover,
nav li a.active {
  background: rgba(207, 207, 207, 0.1);
  color: var(--sand);
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(213, 203, 176, 0.6);
  color: var(--sand);
  font-weight: 600;
  background: linear-gradient(135deg, rgba(213, 203, 176, 0.18), rgba(12, 7, 4, 0.2));
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.hero {
  position: relative;
  padding: 80px 0 120px;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.35;
}

.hero::before {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(213, 203, 176, 0.25), transparent 55%);
  top: -140px;
  left: -100px;
}

.hero::after {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(199, 193, 175, 0.2), transparent 55%);
  bottom: -120px;
  right: -60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(213, 203, 176, 0.12);
  color: var(--sand);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 12px;
}

.tag::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sand), var(--accent));
  box-shadow: 0 0 0 6px rgba(213, 203, 176, 0.15);
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 6vw, 62px);
  line-height: 1.05;
  color: var(--paper);
  margin: 16px 0 14px;
}

.hero p {
  color: rgba(231, 232, 226, 0.85);
  font-size: 18px;
  line-height: 1.7;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.btn {
  border-radius: 999px;
  padding: 14px 18px;
  border: 1px solid rgba(213, 203, 176, 0.65);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--sand);
  background: linear-gradient(135deg, rgba(213, 203, 176, 0.2), rgba(12, 7, 4, 0.2));
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.36);
  border-color: rgba(213, 203, 176, 0.9);
}

.btn.secondary {
  background: rgba(207, 207, 207, 0.08);
  color: var(--paper);
  border-color: rgba(207, 207, 207, 0.35);
}

.card {
  background: rgba(21, 8, 12, 0.72);
  border: 1px solid rgba(207, 207, 207, 0.07);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.badge-stack {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(207, 207, 207, 0.08);
  border: 1px solid rgba(213, 203, 176, 0.18);
  color: var(--paper);
}

.section {
  padding: 80px 0;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--paper);
}

.section-sub {
  color: rgba(231, 232, 226, 0.8);
  max-width: 520px;
  line-height: 1.6;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.dish-card {
  position: relative;
  overflow: hidden;
}

.dish-card img {
  height: 220px;
}

.dish-info {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.dish-name {
  font-weight: 700;
  color: var(--smoke);
  letter-spacing: 0.01em;
}

.dish-price {
  color: var(--sand);
  font-weight: 600;
}

.atmosphere {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.atmosphere figure {
  position: relative;
  overflow: hidden;
}

.atmosphere figcaption {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 10px 12px;
  background: rgba(12, 7, 4, 0.55);
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.quote {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--sand);
  line-height: 1.7;
  margin-top: 14px;
}

footer {
  padding: 48px 0 60px;
  background: rgba(12, 7, 4, 0.85);
  border-top: 1px solid rgba(207, 207, 207, 0.08);
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.footer-title {
  font-family: var(--serif);
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--sand);
}

.footer-list {
  list-style: none;
  display: grid;
  gap: 10px;
  color: rgba(231, 232, 226, 0.8);
}

.footer-note {
  margin-top: 22px;
  color: rgba(231, 232, 226, 0.65);
  font-size: 14px;
}

.page-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, rgba(213, 203, 176, 0.1), rgba(12, 7, 4, 0.15)),
    url('brands-people-xxspFR5_Cy4-unsplash.jpg') center/cover no-repeat;
  border-bottom: 1px solid rgba(213, 203, 176, 0.18);
}

.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 54px);
  color: var(--paper);
}

.page-hero p {
  margin-top: 12px;
  max-width: 600px;
  line-height: 1.6;
  color: rgba(231, 232, 226, 0.85);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  align-items: start;
}

.stat {
  font-size: 36px;
  font-weight: 700;
  color: var(--sand);
}

.stat small {
  display: block;
  color: rgba(231, 232, 226, 0.75);
  font-size: 14px;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(207, 207, 207, 0.08);
  background: rgba(21, 8, 12, 0.65);
}

.timeline-year {
  font-weight: 700;
  color: var(--sand);
  margin-bottom: 6px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  align-items: start;
}

form {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  color: var(--smoke);
}

input,
textarea,
select {
  border-radius: 12px;
  border: 1px solid rgba(213, 203, 176, 0.35);
  background: rgba(12, 7, 4, 0.4);
  padding: 12px 12px;
  color: var(--paper);
  font-family: var(--sans);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
  border: 1px solid rgba(213, 203, 176, 0.22);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(207, 207, 207, 0.12);
  border: 1px solid rgba(213, 203, 176, 0.2);
  color: var(--paper);
  font-weight: 600;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.floating-card {
  position: relative;
  overflow: hidden;
}

.floating-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 7, 4, 0.05), rgba(12, 7, 4, 0.5));
}

.floating-card img {
  height: 320px;
}

#menu {
  padding: 70px 0 30px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.menu-item {
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(207, 207, 207, 0.07);
  background: rgba(12, 7, 4, 0.55);
  display: grid;
  gap: 8px;
}

.menu-item h4 {
  color: var(--smoke);
  font-size: 18px;
}

.menu-item p {
  color: rgba(231, 232, 226, 0.8);
  line-height: 1.5;
}

.menu-item .price {
  color: var(--sand);
  font-weight: 700;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(213, 203, 176, 0.35);
  background: rgba(12, 7, 4, 0.3);
  color: var(--paper);
  justify-content: center;
  align-items: center;
}

@media (max-width: 820px) {
  nav ul {
    position: absolute;
    top: 70px;
    right: 20px;
    background: rgba(12, 7, 4, 0.9);
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(207, 207, 207, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    flex-direction: column;
    align-items: flex-start;
    min-width: 200px;
    transform: scale(0.96);
    transform-origin: top right;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  nav ul.open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }

  .mobile-toggle {
    display: inline-flex;
  }
}
