:root {
  --color-primary: #b83b2e;
  --color-secondary: #2f5d50;
  --color-accent: #e7a33e;
  --color-bg: #fff8f0;
  --color-text: #241d18;
  --color-surface: #ffffff;
  --color-muted: #746961;
  --image-hero: none;
  --image-about: none;
  --image-reservation: none;
  --shadow-soft: 0 18px 55px rgba(36, 29, 24, 0.13);
  --shadow-card: 0 14px 34px rgba(36, 29, 24, 0.1);
  --radius: 8px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  min-height: 100svh;
  position: relative;
  color: #fff;
}

.navbar {
  align-items: center;
  background: rgba(36, 29, 24, 0.78);
  backdrop-filter: blur(18px);
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 14px 18px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 50;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  align-items: center;
  background: var(--color-accent);
  border-radius: 50%;
  color: var(--color-text);
  display: inline-flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.brand-mark.has-logo {
  background: transparent;
  overflow: hidden;
}

.brand-mark img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.brand-name {
  font-size: 1rem;
}

.menu-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: grid;
  gap: 5px;
  height: 40px;
  padding: 8px;
  width: 42px;
}

.menu-toggle span {
  background: #fff;
  border-radius: 999px;
  display: block;
  height: 2px;
  width: 100%;
}

.nav-links {
  background: rgba(36, 29, 24, 0.97);
  display: none;
  flex-direction: column;
  gap: 8px;
  left: 14px;
  padding: 16px;
  position: fixed;
  right: 14px;
  top: 72px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

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

.nav-links a {
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  padding: 10px 12px;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero {
  align-items: end;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  padding: 120px 18px 54px;
  position: relative;
}

.hero-media,
.hero-overlay {
  inset: 0;
  position: absolute;
}

.hero-media {
  background: var(--image-hero) center/cover no-repeat;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(31, 24, 19, 0.86), rgba(31, 24, 19, 0.54), rgba(31, 24, 19, 0.28)),
    linear-gradient(0deg, rgba(31, 24, 19, 0.78), rgba(31, 24, 19, 0.1) 52%);
}

.hero-content {
  max-width: 740px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(3rem, 12vw, 6.7rem);
  letter-spacing: 0;
  line-height: 0.95;
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(2rem, 8vw, 3.6rem);
  line-height: 1.03;
  margin-bottom: 14px;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.2;
}

.hero-slogan {
  font-size: clamp(1.1rem, 4vw, 1.7rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  max-width: 590px;
}

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

.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  display: inline-flex;
  gap: 9px;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn svg,
.testimonial-controls svg,
.floating-whatsapp svg,
.back-to-top svg {
  fill: none;
  flex: 0 0 auto;
  height: 20px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 20px;
}

.btn span {
  line-height: 1;
}

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

.btn:focus-visible,
.filter-btn:focus-visible,
.faq-question:focus-visible,
.testimonial-controls button:focus-visible,
.floating-whatsapp:focus-visible,
.back-to-top:focus-visible {
  outline: 3px solid rgba(231, 163, 62, 0.55);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--color-accent);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
  color: var(--color-text);
}

.btn-whatsapp {
  background: #25d366;
  color: #0c2c18;
}

.btn-whatsapp svg {
  height: 22px;
  width: 22px;
}

.btn-small {
  gap: 7px;
  min-height: 40px;
  padding: 9px 14px;
}

.btn-small svg {
  height: 18px;
  width: 18px;
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.section {
  padding: 72px 18px;
}

.section-heading {
  margin: 0 auto 28px;
  max-width: 760px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--color-muted);
  margin-bottom: 0;
}

.category-filters {
  display: flex;
  gap: 10px;
  margin: 0 auto 30px;
  max-width: var(--max-width);
  overflow-x: auto;
  padding-bottom: 8px;
}

.filter-btn {
  background: var(--color-surface);
  border: 1px solid rgba(36, 29, 24, 0.12);
  border-radius: 999px;
  color: var(--color-text);
  cursor: pointer;
  flex: 0 0 auto;
  font-weight: 800;
  padding: 10px 16px;
}

.filter-btn.active {
  background: var(--color-primary);
  color: #fff;
}

.menu-grid,
.promo-grid,
.gallery-grid {
  display: grid;
  gap: 18px;
  margin: 0 auto;
  max-width: var(--max-width);
}

.product-card,
.promo-card,
.testimonial-card,
.faq-item {
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.product-card {
  background: var(--color-surface);
  overflow: hidden;
}

.product-card img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
}

.product-body {
  padding: 18px;
}

.product-category {
  color: var(--color-secondary);
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.product-body p {
  color: var(--color-muted);
}

.product-footer {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: 16px;
}

.product-footer strong {
  font-size: 1.2rem;
}

.product-footer .btn {
  background: var(--color-secondary);
  color: #fff;
}

.promo-band {
  background: var(--color-secondary);
  color: #fff;
}

.promo-band .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.promo-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 22px;
}

.promo-card span {
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.promo-card p {
  color: rgba(255, 255, 255, 0.78);
}

.about-section,
.contact-section {
  display: grid;
  gap: 28px;
  margin: 0 auto;
  max-width: var(--max-width);
}

.about-image {
  background:
    linear-gradient(rgba(36, 29, 24, 0.08), rgba(36, 29, 24, 0.08)),
    var(--image-about) center/cover no-repeat;
  border-radius: var(--radius);
  min-height: 360px;
}

.about-content p {
  color: var(--color-muted);
}

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

.feature-list article {
  background: var(--color-surface);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius);
  padding: 16px;
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list span {
  color: var(--color-muted);
  margin-top: 4px;
}

.gallery-section {
  background: #f3efe8;
}

.gallery-grid img {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  object-fit: cover;
}

.reservation-section {
  background:
    linear-gradient(90deg, rgba(36, 29, 24, 0.84), rgba(36, 29, 24, 0.42)),
    var(--image-reservation) center/cover no-repeat;
  color: #fff;
  padding: 86px 18px;
}

.reservation-content {
  margin: 0 auto;
  max-width: var(--max-width);
}

.reservation-content p:not(.eyebrow) {
  max-width: 560px;
}

.testimonial-card {
  background: var(--color-surface);
  margin: 0 auto;
  max-width: 820px;
  padding: 26px;
  position: relative;
}

.testimonial-card p {
  font-size: 1.25rem;
  font-weight: 700;
}

.testimonial-card strong {
  color: var(--color-primary);
}

.testimonial-controls {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.testimonial-controls button,
.back-to-top {
  align-items: center;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.testimonial-controls button {
  background: var(--color-primary);
  color: #fff;
  transition: transform 0.2s ease, background 0.2s ease;
}

.testimonial-controls button:hover {
  background: var(--color-secondary);
  transform: translateY(-2px);
}

.testimonial-controls svg {
  height: 22px;
  width: 22px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin: 0 auto;
  max-width: 860px;
}

.faq-item {
  background: var(--color-surface);
  overflow: hidden;
}

.faq-question {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  font-weight: 900;
  justify-content: space-between;
  padding: 18px;
  text-align: left;
  width: 100%;
}

.faq-question span:first-child {
  padding-right: 18px;
}

.faq-answer {
  display: none;
  padding: 0 18px 18px;
}

.faq-answer.open {
  display: block;
}

.faq-answer p {
  color: var(--color-muted);
  margin-bottom: 0;
}

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

.contact-info ul {
  list-style: none;
  margin: 22px 0;
  padding: 0;
}

.contact-info li {
  margin-bottom: 12px;
}

.contact-info a {
  color: var(--color-primary);
  font-weight: 800;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  background: var(--color-secondary);
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  padding: 9px 14px;
  text-transform: capitalize;
}

.map-wrapper {
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  min-height: 360px;
  overflow: hidden;
}

.map-wrapper iframe {
  border: 0;
  height: 100%;
  min-height: 360px;
  width: 100%;
}

.site-footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.78);
  padding: 22px 18px;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.floating-whatsapp,
.back-to-top {
  bottom: 18px;
  position: fixed;
  z-index: 40;
}

.floating-whatsapp {
  align-items: center;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.32);
  color: #0c2c18;
  display: inline-flex;
  height: 56px;
  justify-content: center;
  right: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 56px;
}

.floating-whatsapp:hover {
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.42);
  transform: translateY(-3px) scale(1.03);
}

.floating-whatsapp svg {
  height: 30px;
  stroke-width: 1.8;
  width: 30px;
}

.back-to-top {
  background: var(--color-primary);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  right: 84px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top:hover {
  transform: translateY(-3px);
}

.back-to-top svg {
  height: 21px;
  width: 21px;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

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

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

@media (min-width: 620px) {
  .menu-grid,
  .promo-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section {
    padding: 90px 24px;
  }

  .hero {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (min-width: 900px) {
  .navbar {
    padding: 16px 34px;
  }

  .menu-toggle {
    display: none;
  }

  .nav-links {
    align-items: center;
    background: transparent;
    box-shadow: none;
    display: flex;
    flex-direction: row;
    gap: 4px;
    padding: 0;
    position: static;
  }

  .nav-links a {
    padding: 8px 10px;
  }

  .hero {
    padding: 150px 34px 74px;
  }

  .hero-content {
    margin-left: max(0px, calc((100vw - var(--max-width)) / 2));
  }

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

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

  .about-section,
  .contact-section {
    grid-template-columns: 1fr 1fr;
  }

  .about-image {
    min-height: 620px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
