:root {
  --bg: #f5ede3;
  --bg-soft: #efe1d2;
  --card: #fbf5ef;
  --card-2: #f2e6d9;
  --wine: #6f1d2b;
  --wine-dark: #53131d;
  --wine-soft: #a05362;
  --cream: #fffaf4;
  --title: #2c1a1f;
  --text: #5d4b4f;
  --muted: #836e72;
  --line: rgba(111, 29, 43, 0.12);
  --shadow: 0 24px 70px rgba(73, 34, 41, 0.16);
  --radius: 28px;
  --container: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(111, 29, 43, 0.08), transparent 24%),
    radial-gradient(circle at bottom right, rgba(160, 83, 98, 0.08), transparent 24%),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 110px 0;
}

.eyebrow {
  color: var(--wine);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 800;
  margin-bottom: 16px;
}

h1,
h2,
h3,
.logo-text strong {
  font-family: "Cormorant Garamond", serif;
  color: var(--cream);
}

h1 {
  font-size: clamp(3.4rem, 7vw, 6.5rem);
  line-height: 0.92;
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.96;
  margin-bottom: 14px;
}

h3 {
  font-size: 2rem;
}

p {
  line-height: 1.75;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: 0.3s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--wine), var(--wine-dark));
  color: #fff;
  box-shadow: 0 16px 32px rgba(111, 29, 43, 0.24);
}

.btn-secondary {
  background: rgba(255, 250, 244, 0.72);
  border-color: rgba(255, 250, 244, 0.18);
  color: var(--title);
}

.btn-secondary:hover {
  background: rgba(255, 250, 244, 0.9);
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(245, 237, 227, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--wine), var(--wine-soft));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 24px rgba(111, 29, 43, 0.18);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text strong {
  color: var(--title);
  font-size: 1.45rem;
}

.logo-text span {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  color: var(--title);
  font-weight: 700;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--wine);
  transition: 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-button,
.cart-fab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 52px;
  height: 52px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(111, 29, 43, 0.08);
  color: var(--title);
  cursor: pointer;
  font-weight: 800;
}

.cart-fab {
  position: fixed;
  right: 20px;
  bottom: 84px;
  z-index: 1001;
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, var(--wine), var(--wine-dark));
  color: white;
}

.cart-fab-count {
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--wine-dark);
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(111, 29, 43, 0.08);
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--title);
  border-radius: 2px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    url("https://images.pexels.com/photos/67468/pexels-photo-67468.jpeg?auto=compress&cs=tinysrgb&w=1600")
    center center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(63, 18, 27, 0.88) 15%,
      rgba(63, 18, 27, 0.55) 52%,
      rgba(63, 18, 27, 0.82) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 70px 0;
}

.hero-text {
  max-width: 640px;
  font-size: 1.08rem;
  color: #f2e7df;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
  max-width: 760px;
}

.hero-card {
  padding: 22px 18px;
  border-radius: 22px;
  background: rgba(255, 250, 244, 0.14);
  border: 1px solid rgba(255, 250, 244, 0.15);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.hero-card strong {
  display: block;
  font-size: 1.45rem;
  color: var(--cream);
  margin-bottom: 6px;
}

.hero-card span {
  font-size: 0.92rem;
  color: #f3e5db;
}

.ribbon {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(111, 29, 43, 0.05);
}

.ribbon-row {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.ribbon-row span {
  color: var(--wine-dark);
  font-weight: 700;
  font-size: 0.95rem;
}

.experience-layout,
.featured-layout,
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.experience-copy h2,
.featured-content h2,
.section-header h2,
.contact-content h2 {
  color: var(--title);
}

.experience-copy p,
.featured-content p,
.section-header p,
.contact-content p,
.footer p,
.testimonial-card p {
  color: var(--text);
}

.experience-box,
.menu-card,
.point-card,
.testimonial-card,
.contact-card {
  background: linear-gradient(180deg, var(--card), var(--card-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.experience-box {
  padding: 30px;
}

.experience-box h3 {
  color: var(--title);
}

.experience-box ul {
  list-style: none;
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.experience-box li {
  padding-left: 20px;
  position: relative;
  color: var(--title);
  font-weight: 700;
}

.experience-box li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--wine);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 46px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.menu-card {
  overflow: hidden;
  transition: 0.35s ease;
}

.menu-card:hover {
  transform: translateY(-8px);
}

.menu-image {
  position: relative;
  height: 260px;
  background: #e7d7c9;
}

.menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(111, 29, 43, 0.92);
  color: #fff;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
}

.menu-content {
  padding: 24px;
}

.menu-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
  margin-bottom: 12px;
}

.menu-top h3 {
  color: var(--title);
}

.menu-top strong {
  color: var(--wine);
  white-space: nowrap;
}

.menu-content p {
  margin-bottom: 18px;
}

.featured-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.featured-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.point-card {
  padding: 18px;
}

.point-card strong {
  display: block;
  color: var(--title);
  margin-bottom: 4px;
}

.point-card span {
  color: var(--muted);
}

.atmosphere-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: repeat(2, 250px);
  gap: 16px;
}

.atmosphere-item {
  overflow: hidden;
  border-radius: 24px;
  background: #e7d7c9;
  box-shadow: var(--shadow);
}

.atmosphere-item.large {
  grid-row: span 2;
}

.atmosphere-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.atmosphere-item:hover img {
  transform: scale(1.05);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card {
  padding: 28px;
}

.testimonial-card strong {
  display: block;
  color: var(--title);
  margin-bottom: 4px;
}

.testimonial-card span {
  color: var(--muted);
}

.reservation-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 42px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(111, 29, 43, 0.12), rgba(160, 83, 98, 0.08));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.reservation-copy h2,
.reservation-copy p {
  color: var(--title);
}

.reservation-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-list {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

.contact-item strong {
  display: block;
  color: var(--title);
  margin-bottom: 4px;
}

.contact-card {
  padding: 30px;
}

.contact-card h3 {
  color: var(--title);
  margin-bottom: 10px;
}

.contact-card p {
  color: var(--text);
  margin-bottom: 22px;
}

.footer {
  padding: 42px 0 22px;
  border-top: 1px solid var(--line);
  background: #eadccd;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.footer h3 {
  color: var(--title);
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links a {
  color: var(--text);
  font-weight: 700;
}

.footer-bottom {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, #1db954, #25d366);
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: var(--shadow);
  transition: 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: min(100%, 400px);
  height: 100vh;
  background: #f7efe6;
  border-left: 1px solid var(--line);
  box-shadow: var(--shadow);
  z-index: 1003;
  display: flex;
  flex-direction: column;
  transition: right 0.35s ease;
}

.cart-sidebar.active {
  right: 0;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(35, 20, 24, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 1002;
}

.cart-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-header {
  padding: 22px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cart-label {
  color: var(--wine);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
}

.cart-header h3 {
  color: var(--title);
}

.cart-close {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(111, 29, 43, 0.06);
  color: var(--title);
  cursor: pointer;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-empty {
  padding: 24px;
  border-radius: 18px;
  background: rgba(111, 29, 43, 0.05);
  border: 1px solid var(--line);
}

.cart-empty strong {
  display: block;
  color: var(--title);
  margin-bottom: 8px;
}

.cart-item {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 250, 244, 0.8);
  border: 1px solid var(--line);
  margin-bottom: 14px;
}

.cart-item-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.cart-item-title {
  color: var(--title);
  font-weight: 800;
}

.cart-item-price {
  color: var(--wine);
  font-weight: 800;
  white-space: nowrap;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.qty-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.qty-btn {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(111, 29, 43, 0.08);
  color: var(--title);
  cursor: pointer;
}

.remove-btn {
  border: none;
  background: transparent;
  color: var(--wine);
  font-weight: 700;
  cursor: pointer;
}

.cart-footer {
  padding: 20px;
  border-top: 1px solid var(--line);
}

.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.cart-total-row strong {
  color: var(--title);
  font-size: 1.2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .experience-layout,
  .featured-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .menu-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .atmosphere-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 240px);
  }

  .atmosphere-item.large {
    grid-row: span 1;
  }

  .reservation-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .featured-image img {
    height: 420px;
  }
}

@media (max-width: 860px) {
  .nav {
    position: fixed;
    top: 88px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
    border-radius: 22px;
    background: rgba(245, 237, 227, 0.98);
    border: 1px solid var(--line);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: 0.3s ease;
  }

  .nav.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .desktop-btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-cards,
  .featured-points,
  .menu-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 82px 0;
  }

  .hero-buttons,
  .reservation-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .atmosphere-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .atmosphere-item,
  .atmosphere-item.large {
    height: 240px;
  }

  .ribbon-row {
    justify-content: center;
  }

  .cart-fab {
    bottom: 84px;
  }

  .hero {
    background-position: 60% center;
  }
}