:root {
  --bg: #f4ede1;
  --bg-2: #efe4d6;
  --accent: #8b5e34;
  --accent-2: #c2986b;
  --text: #2d1f14;
  --muted: #6b5544;
  --card: rgba(255, 255, 255, 0.74);
  --glass: rgba(255, 255, 255, 0.2);
  --shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
  --radius: 20px;
  --transition: all 320ms ease;
}

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

body {
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 10% 20%, rgba(203, 166, 118, 0.18), transparent 28%), radial-gradient(circle at 90% 10%, rgba(139, 94, 52, 0.12), transparent 25%), linear-gradient(135deg, var(--bg), var(--bg-2));
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  scroll-behavior: smooth;
}

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

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

ul {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
}

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

header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(244, 237, 225, 0.68);
  border-bottom: 1px solid rgba(139, 94, 52, 0.12);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Playfair Display", serif;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.logo span {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #fff;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(139, 94, 52, 0.25);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 12px;
  transition: var(--transition);
  color: var(--muted);
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  padding: 12px 18px;
  border-radius: 14px;
  transition: var(--transition);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 15px 40px rgba(139, 94, 52, 0.35);
}

.btn.secondary {
  background: rgba(139, 94, 52, 0.12);
  color: var(--text);
  border: 1px solid rgba(139, 94, 52, 0.16);
}

.btn:hover {
  transform: translateY(-2px) scale(1.01);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 4px;
}

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

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -30%;
  background: radial-gradient(circle at 20% 20%, rgba(203, 166, 118, 0.3), transparent 45%), radial-gradient(circle at 80% 10%, rgba(139, 94, 52, 0.25), transparent 40%), linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(239, 225, 206, 0.7));
  transform: scale(1.05);
  filter: blur(6px);
  z-index: -2;
}

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

.hero-copy h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 5vw, 46px);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-copy p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 24px;
}

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

.hero-card {
  background: var(--card);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1200px;
  transition: var(--transition);
}

.hero-card strong {
  display: block;
  font-size: 22px;
  font-family: "Playfair Display", serif;
  margin-bottom: 10px;
}

.hero-card .stat {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.stat-box {
  padding: 14px;
  border-radius: 16px;
  background: rgba(139, 94, 52, 0.08);
  border: 1px solid rgba(139, 94, 52, 0.14);
}

.stat-box b {
  font-size: 18px;
  display: block;
}

.section {
  padding: 70px 0;
}

.section h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 36px);
  margin-bottom: 12px;
  text-align: center;
}

.section p.section-lead {
  text-align: center;
  color: var(--muted);
  margin-bottom: 30px;
}

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

.card-3d {
  background: var(--card);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(139, 94, 52, 0.12);
  box-shadow: var(--shadow);
  position: relative;
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.card-3d:hover {
  transform: rotateX(4deg) rotateY(-4deg) translateY(-4px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.14);
  border-color: rgba(139, 94, 52, 0.32);
}

.card-3d .icon {
  font-size: 24px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: rgba(139, 94, 52, 0.1);
  border-radius: 14px;
  margin-bottom: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(139, 94, 52, 0.12);
  color: var(--muted);
  border: 1px solid rgba(139, 94, 52, 0.18);
  font-weight: 600;
}

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

.cards-stack .card-3d h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.cards-stack .card-3d p {
  color: var(--muted);
  font-size: 15px;
}

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

.why .item {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(139, 94, 52, 0.14);
  box-shadow: var(--shadow);
}

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

.testimonial {
  padding: 18px;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid rgba(139, 94, 52, 0.12);
  box-shadow: var(--shadow);
  transform: scale(1);
  transition: var(--transition);
}

.testimonial:hover {
  transform: translateY(-4px) scale(1.01);
}

.testimonial .rating {
  color: #d4a00d;
  margin-bottom: 6px;
}

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

.list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.list li {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(139, 94, 52, 0.08);
  border: 1px solid rgba(139, 94, 52, 0.14);
  color: var(--muted);
}

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

.menu-card {
  padding: 18px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid rgba(139, 94, 52, 0.14);
  box-shadow: var(--shadow);
  transition: transform 280ms ease, box-shadow 280ms ease;
  transform-style: preserve-3d;
}

.menu-card:hover {
  transform: rotateX(3deg) rotateY(-3deg) translateY(-2px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.12);
}

.menu-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.menu-card p {
  color: var(--muted);
  font-size: 15px;
}

.menu-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

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

.contact-card {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(139, 94, 52, 0.14);
  box-shadow: var(--shadow);
}

.map-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(139, 94, 52, 0.12);
}

.map-wrap iframe {
  width: 100%;
  height: 320px;
  border: none;
  display: block;
}

.form {
  display: grid;
  gap: 14px;
}

.form .field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form label {
  font-weight: 600;
}

.form input,
.form textarea,
.form select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(139, 94, 52, 0.18);
  background: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
  font: inherit;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(139, 94, 52, 0.16);
}

.footer {
  margin-top: 40px;
  padding: 24px 0 36px;
  border-top: 1px solid rgba(139, 94, 52, 0.14);
  text-align: center;
  color: var(--muted);
}

.fab-reserve {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #fff;
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(139, 94, 52, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

.page-transition {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 94, 52, 0.4), rgba(203, 166, 118, 0.35));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 500ms ease;
  z-index: 100;
  pointer-events: none;
}

.page-transition.active {
  transform: scaleY(1);
}

.hero-floating {
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 72px;
    right: 4%;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.9);
    padding: 12px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    min-width: 200px;
    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding-top: 32px;
  }
}

@media (max-width: 600px) {
  .hero-copy h1 {
    font-size: 30px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .navbar {
    padding: 14px 0;
  }
}
