:root {
  --bg: #fbfaf7;
  --bg-alt: #f3f0ea;
  --text: #22201d;
  --muted: #6f6a63;
  --accent: #b9935a;
  --accent-dark: #8b6a3d;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(23, 20, 15, 0.08);
  --shadow-soft: 0 12px 30px rgba(23, 20, 15, 0.12);
  --radius: 20px;
  --transition: 0.3s ease;
  scroll-behavior: smooth;
}

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

body {
  font-family: "Helvetica Neue", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
  background-color: #efe7dc;
  object-fit: cover;
}

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

.section {
  padding: 80px 0;
}

.section-header {
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: clamp(2rem, 2vw + 1rem, 2.8rem);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--muted);
  max-width: 560px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
}

.navbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(251, 250, 247, 0.95);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.logo {
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 22px;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--muted);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--accent-dark);
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hero {
  padding-top: 120px;
  position: relative;
  overflow: hidden;
}

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

.hero-content {
  display: grid;
  gap: 30px;
  max-width: 620px;
}

.hero h1 {
  font-size: clamp(2.8rem, 4vw + 1rem, 4.2rem);
  line-height: 1.1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-dark);
  font-size: 0.85rem;
}

.lead {
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 15px 30px rgba(185, 147, 90, 0.3);
}

.btn.primary:hover {
  background: var(--accent-dark);
}

.btn.ghost {
  border-color: var(--accent);
  color: var(--accent-dark);
  background: transparent;
}

.btn.ghost:hover {
  background: rgba(185, 147, 90, 0.12);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  background: rgba(255, 255, 255, 0.6);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-highlights h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.hero-highlights p {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-visual {
  position: absolute;
  right: -20%;
  top: 10%;
  width: 70%;
  height: 90%;
  background: radial-gradient(circle at top, rgba(185, 147, 90, 0.35), transparent 60%),
    linear-gradient(120deg, #f2ede4, #ffffff 60%, #e6dbc9 100%);
  border-radius: 50%;
  filter: blur(0px);
}

.hero-media img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow);
  background: #e9e2d8;
  object-fit: cover;
  min-height: 320px;
}

.signature {
  background: var(--bg-alt);
}

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

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

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: grid;
  gap: 12px;
}

.card-image {
  height: 140px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 50%);
  pointer-events: none;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
  background: #efe7dc;
}

.card span {
  font-weight: 600;
  color: var(--accent-dark);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 50px rgba(23, 20, 15, 0.12);
}

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

.menu .tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.tab {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.tab.active {
  border-color: var(--accent);
  color: var(--accent-dark);
  box-shadow: var(--shadow);
}

.tab-panels {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.tab-panel ul {
  list-style: none;
  display: grid;
  gap: 16px;
}

.tab-panel li {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
}

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

.gallery-item {
  height: 180px;
  border-radius: 18px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  padding: 0;
  position: relative;
  overflow: hidden;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #efe7dc;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), transparent 60%);
  opacity: 0.7;
  transition: var(--transition);
}

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

.about-content {
  display: grid;
  gap: 32px;
}

.values {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.value-card {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.reviews {
  background: var(--bg-alt);
}

.review-slider {
  position: relative;
  overflow: hidden;
}

.review-track {
  display: flex;
  transition: transform var(--transition);
}

.review-card {
  min-width: 100%;
  padding: 30px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.review-card p {
  font-size: 1.1rem;
}

.dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d2c6b5;
  border: none;
  cursor: pointer;
}

.dot.active {
  background: var(--accent-dark);
}

.reservation-grid {
  display: grid;
  gap: 30px;
  align-items: start;
}

.reservation-form {
  display: grid;
  gap: 16px;
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row.full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #e3ddd4;
  font-family: inherit;
  background: #fdfbf8;
}

.error {
  color: #b44c4c;
  font-size: 0.85rem;
  min-height: 18px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(185, 147, 90, 0.3);
}

.reservation-success {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.contact-grid {
  display: grid;
  gap: 24px;
  align-items: stretch;
}

.contact-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.hours {
  display: grid;
  gap: 10px;
}

.hours div {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
}

.map-placeholder {
  background: linear-gradient(135deg, #f4efe8, #e4d8c9);
  border-radius: var(--radius);
  min-height: 260px;
  box-shadow: var(--shadow);
}

.footer {
  padding: 30px 0;
  background: #f0eae1;
  text-align: center;
  color: var(--muted);
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--text);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  pointer-events: none;
  z-index: 30;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 13, 11, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 40;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  width: min(720px, 90vw);
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow);
}

.lightbox-image {
  width: 100%;
  height: 360px;
  border-radius: 16px;
  object-fit: cover;
  background: #efe7dc;
}

.lightbox-nav,
.lightbox-close {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.lightbox-close {
  top: 16px;
  right: 16px;
  transform: none;
}

.lightbox-nav.prev {
  left: -20px;
}

.lightbox-nav.next {
  right: -20px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

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

@media (min-width: 768px) {
  .reservation-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

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

  .about-content {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    right: 6vw;
    background: var(--white);
    flex-direction: column;
    padding: 16px 20px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: var(--transition);
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-visual {
    width: 100%;
    right: -40%;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 60px 0;
  }

  .hero {
    padding-top: 100px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .lightbox-nav.prev {
    left: 8px;
  }

  .lightbox-nav.next {
    right: 8px;
  }
}
