:root {
  --bg: #120f0d;
  --bg-strong: #1a1513;
  --panel: rgba(35, 29, 25, 0.85);
  --panel-soft: rgba(255, 255, 255, 0.04);
  --card: #1c1715;
  --card-2: #241d1a;
  --text: #f5eee6;
  --text-soft: #d1bca5;
  --muted: #b79f8d;
  --line: rgba(255, 255, 255, 0.08);
  --gold: #d6a35c;
  --gold-strong: #f2b754;
  --orange: #ef8d45;
  --cream: #f5efe7;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: linear-gradient(180deg, var(--bg) 0%, #171210 100%);
  color: var(--text);
  line-height: 1.7;
}

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

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  overflow-x: hidden;
}

.section-space {
  padding: 120px 0;
}

.container {
  max-width: 1200px;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  font-size: 0.72rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.eyebrow.accent {
  color: var(--gold);
}

h1,
h2,
h3,
h4,
.brand-name {
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  color: var(--cream);
}

p {
  margin-bottom: 0;
}

.btn {
  border-radius: 999px;
  padding: 0.9rem 1.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  border: none;
  box-shadow: 0 18px 35px rgba(214, 163, 92, 0.35);
  color: #1b120d;
}

.btn-primary:hover {
  transform: translateY(-2px);
  color: #1b120d;
  box-shadow: 0 24px 40px rgba(214, 163, 92, 0.45);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--text);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--text);
}

.glass-card {
  background: var(--panel);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.topbar {
  position: relative;
  z-index: 20;
}

.navbar {
  padding: 1.1rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(12, 10, 9, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-brand {
  gap: 0.8rem;
}

.brand-logo {
  width: 54px;
  height: 54px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  letter-spacing: 0.12em;
  font-size: 1.3rem;
  color: var(--cream);
}

.brand-text small {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.navbar-nav {
  gap: 0.35rem;
}

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 0.96rem;
  font-weight: 500;
  padding: 0.75rem 1rem !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.3rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-btn-item {
  margin-left: 0.8rem;
}

.btn-book {
  padding-inline: 1.3rem;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #0e0d0b;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1559339352-11d035aa65de?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 10, 9, 0.8) 0%, rgba(12, 10, 9, 0.55) 30%, rgba(12, 10, 9, 0.32) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-section h1 {
  max-width: 620px;
  font-size: clamp(3.5rem, 7vw, 7rem);
  color: var(--cream);
  margin-bottom: 1.2rem;
}

.lead {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  z-index: 2;
}

.scroll-indicator i {
  margin-top: 0.7rem;
  font-size: 1.3rem;
  animation: floatDown 1.8s infinite ease-in-out;
}

@keyframes floatDown {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.8;
  }
  50% {
    transform: translateY(12px);
    opacity: 1;
  }
}

.highlights {
  position: relative;
  margin-top: -60px;
  z-index: 3;
}

.info-card {
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.info-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(214, 163, 92, 0.12);
  color: var(--gold);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.info-card h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

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

.about-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.about-image-wrap {
  position: relative;
  padding: 1rem 0 0 1rem;
}

.about-image-wrap img {
  width: 100%;
  border-radius: 32px;
  height: 720px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.floating-badge {
  position: absolute;
  right: -10px;
  bottom: 20px;
  background: rgba(17, 14, 12, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 1rem 1.1rem;
  backdrop-filter: blur(10px);
  color: var(--cream);
}

.floating-badge span {
  display: block;
  color: var(--gold);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.feature-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.02rem;
  color: var(--text);
}

.feature-item i {
  color: var(--gold);
}

.menu-section {
  background: rgba(255, 255, 255, 0.015);
}

.section-heading {
  margin-bottom: 2.7rem;
}

.section-heading h2 {
  max-width: 700px;
  margin-inline: auto;
}

.menu-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text-soft);
  border-radius: 999px;
  padding: 0.8rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  border-color: transparent;
  color: #1b120d;
}

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

.menu-card {
  background: linear-gradient(180deg, rgba(32, 26, 22, 0.9), rgba(22, 18, 15, 0.9));
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.32);
}

.menu-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.menu-card-body {
  padding: 1.3rem 1.2rem 1.4rem;
}

.menu-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.badge {
  display: inline-flex;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(214, 163, 92, 0.15);
  border: 1px solid rgba(214, 163, 92, 0.2);
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price,
.price-tag {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.2rem;
}

.menu-card h3 {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

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

.signature-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  background: linear-gradient(135deg, rgba(214, 163, 92, 0.1), rgba(239, 141, 69, 0.08), rgba(23, 18, 16, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.signature-content {
  padding: 4rem 3rem;
}

.signature-content p {
  color: var(--muted);
  max-width: 520px;
}

.signature-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.signature-image img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.offers-section {
  background: rgba(255, 255, 255, 0.01);
}

.offer-card {
  display: flex;
  flex-direction: column;
  min-height: 290px;
  height: 100%;
  padding: 1.8rem 1.5rem;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(28, 23, 21, 0.85), rgba(20, 17, 15, 0.9));
  box-shadow: var(--shadow);
}

.offer-card.alt {
  background: linear-gradient(180deg, rgba(55, 42, 32, 0.9), rgba(30, 24, 21, 0.9));
}

.offer-card.accent {
  background: linear-gradient(180deg, rgba(214, 163, 92, 0.15), rgba(34, 25, 20, 0.9));
}

.offer-tag {
  display: inline-flex;
  width: fit-content;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(214, 163, 92, 0.18);
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.offer-card h3 {
  font-size: 2.4rem;
  margin-bottom: 0.7rem;
}

.offer-card p {
  color: var(--muted);
  margin-bottom: 1.4rem;
}

.offer-card a {
  margin-top: auto;
  color: var(--gold);
  font-weight: 600;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: 240px;
  cursor: pointer;
}

.gallery-item.tall {
  grid-row: span 2;
  min-height: 500px;
}

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

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

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.34));
  transition: opacity 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.08);
}

.gallery-item:hover::after {
  opacity: 0.8;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(8, 8, 8, 0.9);
  z-index: 2000;
  padding: 1.5rem;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  background: rgba(17, 14, 12, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
}

.lightbox img {
  width: 100%;
  max-height: 85vh;
  object-fit: cover;
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
  color: white;
  font-size: 2rem;
  line-height: 1;
  z-index: 10;
}

.testimonials-section {
  background: rgba(255, 255, 255, 0.012);
}

.testimonial-slider {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.testimonial {
  display: none;
  text-align: center;
  padding: 2.3rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.testimonial.active {
  display: block;
}

.stars {
  margin-bottom: 1rem;
  color: var(--gold);
  letter-spacing: 0.15em;
}

.testimonial p {
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.reviewer {
  display: grid;
  gap: 0.2rem;
}

.reviewer strong {
  font-size: 1.2rem;
}

.reviewer span {
  color: var(--muted);
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.slider-btn {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.reservation-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(33, 26, 22, 0.95), rgba(22, 17, 15, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

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

.mini-list {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.mini-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text-soft);
}

.mini-list i {
  color: var(--gold);
}

.reservation-form {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.5rem;
}

.reservation-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-soft);
  font-weight: 500;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
}

.reservation-form input::placeholder,
.reservation-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
  outline: none;
  border-color: rgba(214, 163, 92, 0.8);
  box-shadow: 0 0 0 3px rgba(214, 163, 92, 0.15);
}

.form-actions {
  margin-top: 1.5rem;
}

.form-message {
  min-height: 1.2rem;
  margin-top: 0.8rem;
  font-weight: 600;
}

.form-message.success {
  color: #9ae6b4;
}

.form-message.error {
  color: #f7a09e;
}

.contact-grid {
  align-items: stretch;
}

.contact-card {
  padding: 2rem 1.5rem;
  border-radius: 26px;
  height: 100%;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.contact-item:last-of-type {
  border-bottom: none;
}

.contact-item i {
  width: 42px;
  height: 42px;
  background: rgba(214, 163, 92, 0.12);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-top: 0.15rem;
}

.contact-item h4 {
  font-size: 1.3rem;
  margin-bottom: 0.2rem;
}

.contact-item p,
.contact-card p {
  color: var(--muted);
}

.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.social-links a:hover {
  background: rgba(214, 163, 92, 0.15);
  border-color: rgba(214, 163, 92, 0.3);
  color: var(--gold);
}

.map-placeholder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 440px;
  border-radius: 26px;
  overflow: hidden;
  background-image: url('https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.map-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 12, 10, 0.45);
}

.map-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1rem 1.2rem;
  border-radius: 16px;
  background: rgba(12, 10, 9, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(7px);
}

.map-overlay strong {
  font-size: 1.2rem;
}

.site-footer {
  background: #120f0d;
  padding-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.footer-brand h3 {
  font-size: 2.2rem;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: var(--muted);
}

.site-footer h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 2.5rem;
  padding: 1.4rem 0 2rem;
}

.back-to-top {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #1b120d;
  box-shadow: 0 18px 35px rgba(214, 163, 92, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s ease;
  z-index: 1200;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(19, 15, 13, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1rem;
    margin-top: 1rem;
  }

  .nav-btn-item {
    margin-left: 0;
    margin-top: 0.7rem;
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signature-wrap,
  .reservation-wrap {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 767.98px) {
  .section-space {
    padding: 90px 0;
  }

  .hero-section {
    min-height: 90vh;
  }

  .hero-section h1 {
    max-width: 100%;
  }

  .menu-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 280px;
  }

  .signature-content {
    padding: 2.2rem 1.4rem;
  }

  .reservation-wrap {
    padding: 1rem;
  }

  .contact-item {
    gap: 0.7rem;
  }
}
