:root {
  --bg: #0b0b0f;
  --bg-alt: #0f0f15;
  --text: #f3f3f7;
  --muted: rgba(243, 243, 247, 0.7);
  --primary: #ffb03b;
  --primary-2: #e85d9d;
  --shadow: rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --max-width: 1200px;
  --font-display: "Playfair Display", serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: radial-gradient(circle at top, rgba(255, 176, 59, 0.10), transparent 60%),
    radial-gradient(circle at bottom, rgba(232, 93, 157, 0.10), transparent 55%),
    var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(100% - 2.4rem, var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 6.5rem 0;
}

.section--alt {
  background: linear-gradient(135deg, rgba(255, 176, 59, 0.05), rgba(232, 93, 157, 0.05));
}

.section-header {
  max-width: 740px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.5vw, 2.8rem);
  margin: 0;
}

.section-header p {
  margin: 1rem 0 0;
  color: var(--muted);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  width: 100%;
  padding: 1rem 0;
  background: rgba(10, 10, 12, 0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

.brand-sub {
  font-size: 0.75rem;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  position: relative;
  padding: 0.2rem 0;
}

.nav-link::after {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  background: var(--primary);
  transition: width 0.25s ease;
  position: absolute;
  left: 0;
  bottom: -2px;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 2.2rem;
  height: 2.2rem;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.4rem;
}

.nav-toggle-bar {
  width: 1.1rem;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

@media (max-width: 768px) {
  .header-inner {
    justify-content: space-between;
  }

  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    inset: 100% 0 0;
    background: rgba(10, 10, 12, 0.92);
    padding: 1.5rem 1.25rem 1.25rem;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav.open {
    display: flex;
  }

  .nav-link {
    padding: 0.75rem 0;
    width: 100%;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

.hero {
  padding: 8rem 0 10rem;
  min-height: 650px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1540189549336-e6e99c3679fe?auto=format&fit=crop&w=1600&q=80') center / cover no-repeat;
  opacity: 0.35;
  filter: blur(1px);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 12, 0.8), rgba(10, 10, 12, 0.95) 65%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  text-align: left;
}

.hero-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0 0.75rem;
}

.hero-logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.hero-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 0.8rem;
  margin-top: 1.75rem;
}

.hero-gallery img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  color: rgba(243, 243, 247, 0.6);
  margin: 0 0 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 5vw, 4rem);
  margin: 0 0 1rem;
  line-height: 1.05;
}

.hero-subtitle {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 590px;
  margin: 0 0 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: var(--bg);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-full {
  width: 100%;
}

.grid {
  display: grid;
  gap: 2.5rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 840px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.features {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 1.5rem;
}

.features li {
  display: grid;
  gap: 0.3rem;
}

.features strong {
  font-weight: 700;
}

.section-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-card {
  width: 100%;
  max-width: 460px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.media-card-body {
  padding: 2rem;
}

.media-card-body h3 {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
}

.media-card-body p {
  margin: 0;
  color: var(--muted);
}

.media-card-visual {
  width: 100%;
  height: 220px;
  border-radius: 0 0 var(--radius) var(--radius);
  object-fit: cover;
  display: block;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.menu-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.menu-card h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.menu-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.menu-card ul li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.menu-item {
  flex: 1 1 0;
}

.menu-price {
  flex-shrink: 0;
  color: var(--muted);
  white-space: nowrap;
}

.menu-note {
  margin-top: 2.5rem;
  text-align: center;
  color: var(--muted);
}

.reservation-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.reservation-form .form-row {
  margin-bottom: 1.25rem;
}

.reservation-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.reservation-form input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  font: inherit;
}

.reservation-form input:focus {
  outline: 2px solid rgba(255, 176, 59, 0.7);
  outline-offset: 2px;
}

.reserve-info p {
  color: var(--muted);
  margin: 0 0 1.2rem;
}

.reserve-info a {
  color: var(--text);
  text-decoration: underline;
}

.form-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-feedback {
  margin-top: 1rem;
  font-weight: 600;
  min-height: 1.2rem;
}

.form-feedback.success {
  color: #a1f0b9;
}

.form-feedback.error {
  color: #ff8b92;
}

.section--map {
  padding-top: 4.5rem;
  padding-bottom: 5rem;
}

.map-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
}

@media (max-width: 900px) {
  .map-grid {
    grid-template-columns: 1fr;
  }
}

.map-card {
  border-radius: var(--radius);
  overflow: hidden;
  height: 420px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.4);
}

.map-frame {
  width: 100%;
  height: 100%;
}

.map-details {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.map-details h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  letter-spacing: 0.03em;
}

.map-details p {
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.section--gallery {
  padding-top: 4rem;
  padding-bottom: 6rem;
}

.section--reviews {
  padding-top: 4rem;
  padding-bottom: 6rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.review-card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  background: rgba(0, 0, 0, 0.25);
  padding: 1.75rem;
}

.review-text {
  margin: 0 0 1rem;
  line-height: 1.5;
  color: rgba(243, 243, 247, 0.9);
}

.review-author {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.carousel-track-wrapper {
  flex: 1;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 1rem;
  scroll-behavior: smooth;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-slide {
  flex: 0 0 90%;
  scroll-snap-align: center;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
  background: rgba(0, 0, 0, 0.25);
}

.carousel-slide img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.carousel-btn {
  border: none;
  background: rgba(0, 0, 0, 0.55);
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.75);
  transform: translateY(-1px);
}

.carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

@media (min-width: 840px) {
  .carousel-slide {
    flex: 0 0 45%;
  }
}

@media (min-width: 1200px) {
  .carousel-slide {
    flex: 0 0 28%;
  }
}
.social {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-link {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.site-footer {
  padding: 2.5rem 0;
  background: rgba(4, 5, 8, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-meta {
  color: var(--muted);
  margin: 0;
}

@media (max-width: 720px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 840px) {
  .nav {
    position: fixed;
    inset: 72px 0 0;
    background: rgba(10, 10, 12, 0.95);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    transform: translateY(-150%);
    transition: transform 0.25s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav.open {
    transform: translateY(0);
  }

  .nav-toggle {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
  z-index: 90;
}

.lightbox[aria-hidden="false"] {
  display: flex;
}

.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(0, 0, 0, 0.75);
}
