:root {
  --olive: #263524;
  --olive-2: #34482f;
  --terracotta: #bd755f;
  --cream: #fbf3e4;
  --cream-2: #f3e2c6;
  --coffee: #4a3127;
  --gold: #c7a365;
  --ink: #211b17;
  --muted: #76685f;
  --white: #fffaf2;
  --shadow: 0 24px 70px rgba(54, 39, 28, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 18px clamp(18px, 4vw, 56px);
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.site-header.scrolled {
  background: rgba(251, 243, 228, 0.94);
  box-shadow: 0 14px 40px rgba(54, 39, 28, 0.12);
  backdrop-filter: blur(16px);
  padding-block: 12px;
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--olive);
  color: var(--gold);
  font-family: Georgia, serif;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--coffee);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-panel a {
  position: relative;
}

.nav-panel a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  transition: width 0.25s ease;
}

.nav-panel a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(74, 49, 39, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.8);
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--olive);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 0;
  border-radius: var(--radius);
  background: var(--terracotta);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(189, 117, 95, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(189, 117, 95, 0.34);
}

.btn-small {
  min-height: 42px;
  padding: 10px 16px;
}

.btn-ghost {
  background: transparent;
  color: var(--olive);
  border: 1px solid rgba(38, 53, 36, 0.28);
  box-shadow: none;
}

.btn-ghost.light {
  color: var(--white);
  border-color: rgba(255, 250, 242, 0.44);
}

.hero {
  min-height: 100vh;
  padding: 132px clamp(18px, 5vw, 72px) 70px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-content h1,
.section h2,
.conversion h2,
.final-cta h2 {
  margin: 0;
  color: var(--olive);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-content h1 {
  max-width: 720px;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
}

.hero-content p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--coffee);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.hero-proof span {
  padding: 9px 12px;
  border-radius: var(--radius);
  background: var(--olive);
  color: var(--gold);
  font-weight: 900;
}

.hero-proof p {
  margin: 0;
  font-size: 0.98rem;
}

.hero-visual {
  position: relative;
  min-height: 540px;
}

.visual-img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.photo {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 540px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.photo-hero {
  background:
    radial-gradient(circle at 54% 50%, rgba(255, 250, 242, 0.8) 0 11%, transparent 12%),
    radial-gradient(circle at 38% 62%, rgba(189, 117, 95, 0.28) 0 6%, transparent 7%),
    radial-gradient(circle at 64% 37%, rgba(199, 163, 101, 0.26) 0 7%, transparent 8%),
    linear-gradient(135deg, #f8ead3, #d6b48a 46%, #5a3b2f);
}

.photo-hero::before {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.16), rgba(255, 250, 242, 0)),
    repeating-linear-gradient(36deg, rgba(74, 49, 39, 0.15) 0 2px, transparent 2px 18px);
  transform: rotate(-8deg);
}

.plate {
  position: absolute;
  display: block;
  border-radius: 50%;
  background:
    radial-gradient(circle, #bd755f 0 14%, #31442d 15% 21%, #fffaf2 22% 56%, #d8c5a5 57% 64%, transparent 65%),
    #fffaf2;
  box-shadow: 0 24px 44px rgba(40, 28, 22, 0.28);
}

.plate-main {
  left: 25%;
  top: 24%;
  width: 48%;
  aspect-ratio: 1;
}

.plate-small {
  width: 24%;
  aspect-ratio: 1;
}

.plate-small.one {
  right: 12%;
  top: 15%;
}

.plate-small.two {
  left: 9%;
  bottom: 15%;
}

.glass {
  position: absolute;
  right: 16%;
  bottom: 18%;
  width: 12%;
  height: 24%;
  border: 3px solid rgba(255, 250, 242, 0.76);
  border-radius: 45% 45% 12px 12px;
  background: linear-gradient(rgba(199, 163, 101, 0.18), rgba(255, 250, 242, 0.34));
  box-shadow: 0 18px 28px rgba(40, 28, 22, 0.2);
}

.cutlery {
  position: absolute;
  left: 15%;
  top: 18%;
  width: 4px;
  height: 42%;
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.72);
  box-shadow: 18px 0 0 rgba(255, 250, 242, 0.72);
  transform: rotate(16deg);
}

.photo-room {
  background:
    radial-gradient(circle at 20% 18%, rgba(199, 163, 101, 0.4) 0 8%, transparent 9%),
    linear-gradient(165deg, rgba(38, 53, 36, 0.95), rgba(74, 49, 39, 0.86)),
    #4a3127;
}

.photo-room::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background:
    linear-gradient(90deg, transparent, rgba(255, 250, 242, 0.18), transparent),
    repeating-linear-gradient(90deg, #614334 0 34px, #52372b 34px 68px);
}

.lamp {
  position: absolute;
  left: 20%;
  top: 5%;
  width: 16%;
  height: 18%;
  border-radius: 0 0 50% 50%;
  background: var(--gold);
  box-shadow: 0 0 60px rgba(199, 163, 101, 0.72);
}

.table-scene {
  position: absolute;
  left: 27%;
  bottom: 23%;
  width: 48%;
  height: 15%;
  border-radius: 50%;
  background: #f4dec0;
  box-shadow: 0 18px 0 #3a2922, 0 38px 36px rgba(0, 0, 0, 0.22);
}

.chair {
  position: absolute;
  bottom: 17%;
  width: 18%;
  height: 28%;
  border-radius: 40% 40% 10px 10px;
  background: rgba(189, 117, 95, 0.72);
}

.chair.left {
  left: 13%;
}

.chair.right {
  right: 13%;
}

.hero-visual .photo,
.split-media .photo {
  height: 100%;
  min-height: 540px;
}

.floating-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(230px, calc(100% - 48px));
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.92);
  box-shadow: var(--shadow);
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card span {
  margin-top: 4px;
  color: var(--terracotta);
  font-size: 1.4rem;
  font-weight: 900;
}

.section {
  padding: 92px clamp(18px, 5vw, 72px);
  max-width: 1280px;
  margin: 0 auto;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-heading.compact {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
}

.section h2,
.conversion h2,
.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3.65rem);
}

.section-heading p,
.split-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.problem-grid article,
.benefit-card,
.dish-card,
.story-grid article,
.package-card,
.testimonial,
.faq-item,
.reservation-form {
  border: 1px solid rgba(74, 49, 39, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.72);
  box-shadow: 0 18px 46px rgba(54, 39, 28, 0.08);
}

.problem-grid article {
  min-height: 136px;
  padding: 24px;
  display: flex;
  align-items: end;
  color: var(--coffee);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.split-media {
  min-height: 520px;
}

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

.check-list span {
  padding: 14px 16px;
  border-left: 4px solid var(--terracotta);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.9);
  color: var(--coffee);
  font-weight: 750;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.benefit-card,
.testimonial {
  padding: 26px;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--olive);
  color: var(--gold);
  font-weight: 900;
}

h3 {
  margin: 18px 0 10px;
  color: var(--coffee);
  line-height: 1.2;
  letter-spacing: 0;
}

.benefit-card p,
.dish-card p,
.story-grid p,
.package-card p,
.package-card span,
.testimonial p,
.faq-item p {
  color: var(--muted);
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dish-card {
  overflow: hidden;
}

.dish-image {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.dish-photo {
  position: relative;
  overflow: hidden;
  height: 230px;
  background: var(--cream-2);
}

.dish-photo::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 52%;
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 48% 48%, var(--accent) 0 18%, var(--garnish) 19% 28%, #fffaf2 29% 62%, #d5bd95 63% 70%, transparent 71%);
  box-shadow: 0 18px 34px rgba(54, 39, 28, 0.22);
}

.dish-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 22%, rgba(255, 250, 242, 0.44) 0 8%, transparent 9%),
    linear-gradient(135deg, transparent, rgba(74, 49, 39, 0.22));
}

.dish-photo.entrada {
  --accent: #7d8b47;
  --garnish: #bd755f;
  background: linear-gradient(135deg, #f0d5ad, #8d674f);
}

.dish-photo.pasta {
  --accent: #d9af5b;
  --garnish: #9a523f;
  background: linear-gradient(135deg, #f5dfb6, #bd755f);
}

.dish-photo.parrilla {
  --accent: #6a2f24;
  --garnish: #7d8b47;
  background: linear-gradient(135deg, #ddc29b, #4a3127);
}

.dish-photo.fusion {
  --accent: #bd755f;
  --garnish: #263524;
  background: linear-gradient(135deg, #f3d7b5, #c7a365);
}

.dish-photo.postre {
  --accent: #6f4033;
  --garnish: #d8b469;
  background: linear-gradient(135deg, #ffe6ce, #b67b69);
}

.dish-photo.bebida {
  --accent: #c7a365;
  --garnish: #7d8b47;
  background: linear-gradient(135deg, #e7d8b8, #31442d);
}

.dish-photo.bebida::before {
  width: 30%;
  border-radius: 44% 44% 14px 14px;
  background: linear-gradient(#fffaf2 0 8%, var(--accent) 9% 64%, rgba(255, 250, 242, 0.58) 65% 100%);
}

.dish-card div {
  padding: 20px;
}

.tag,
.badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(199, 163, 101, 0.2);
  color: var(--coffee);
  font-size: 0.78rem;
  font-weight: 900;
}

.dish-card strong {
  display: block;
  margin: 14px 0;
  color: var(--terracotta);
  font-size: 1.35rem;
}

.dish-card button {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(38, 53, 36, 0.22);
  border-radius: var(--radius);
  background: transparent;
  color: var(--olive);
  font-weight: 800;
  cursor: pointer;
}

.story {
  max-width: none;
  background: var(--olive);
  color: var(--white);
}

.story .section-heading {
  max-width: 1120px;
  margin-inline: auto;
}

.story h2,
.story h3 {
  color: var(--white);
}

.story-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.story-grid article {
  min-height: 310px;
  padding: 28px;
  background: rgba(255, 250, 242, 0.08);
  border-color: rgba(255, 250, 242, 0.16);
}

.story-grid span {
  color: var(--gold);
  font-weight: 900;
}

.story-grid p {
  color: rgba(255, 250, 242, 0.76);
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-line::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(189, 117, 95, 0.28);
}

.process-line article {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-line span {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(189, 117, 95, 0.24);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.package-card {
  position: relative;
  padding: 30px;
  cursor: pointer;
  outline: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.package-card:hover,
.package-card.selected,
.package-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(189, 117, 95, 0.5);
  background: var(--white);
}

.package-card.featured {
  background: var(--olive);
  color: var(--white);
}

.package-card.featured h3,
.package-card.featured p,
.package-card.featured span {
  color: var(--white);
}

.package-card strong {
  display: block;
  color: var(--terracotta);
  font-size: 2.2rem;
}

.package-card.featured strong {
  color: var(--gold);
}

.btn-card {
  width: 100%;
  margin-top: 24px;
}

.conversion,
.final-cta {
  margin: 24px clamp(18px, 5vw, 72px);
  padding: clamp(34px, 6vw, 62px);
  border-radius: var(--radius);
  background: var(--coffee);
  color: var(--white);
  display: grid;
  grid-template-columns: 1.3fr 1fr auto;
  gap: 28px;
  align-items: center;
}

.conversion h2,
.final-cta h2 {
  color: var(--white);
}

.conversion p,
.final-cta p {
  color: rgba(255, 250, 242, 0.78);
}

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

.stats span {
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.1);
}

.stats strong {
  color: var(--gold);
}

.testimonial p {
  font-size: 1.02rem;
}

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

.faq-item {
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  min-height: 58px;
  padding: 18px 22px;
  border: 0;
  background: transparent;
  color: var(--coffee);
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}

.faq-item p {
  max-height: 0;
  margin: 0;
  padding: 0 22px;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
}

.faq-item.active p {
  max-height: 160px;
  padding: 0 22px 20px;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
}

.whatsapp {
  display: inline-flex;
  margin: 18px 0;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: var(--olive);
  color: var(--white);
  font-weight: 900;
}

.contact-details {
  display: grid;
  gap: 10px;
  color: var(--coffee);
}

.fake-map {
  position: relative;
  min-height: 210px;
  margin-top: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(38, 53, 36, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(38, 53, 36, 0.12) 1px, transparent 1px),
    var(--cream-2);
  background-size: 34px 34px;
}

.fake-map span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 12px 16px;
  border-radius: var(--radius);
  background: var(--terracotta);
  color: var(--white);
  font-weight: 900;
}

.reservation-form {
  padding: 26px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.reservation-form label {
  color: var(--coffee);
  font-weight: 800;
}

.reservation-form input,
.reservation-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid rgba(74, 49, 39, 0.18);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

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

.final-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: none;
  margin-top: 70px;
  background: linear-gradient(135deg, var(--olive), var(--coffee));
}

.footer {
  padding: 42px clamp(18px, 5vw, 72px);
  background: #1b2519;
  color: rgba(255, 250, 242, 0.78);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: start;
}

.footer .brand {
  color: var(--white);
}

.footer p {
  max-width: 460px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 800;
}

.footer small {
  grid-column: 1 / -1;
}

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

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

@media (max-width: 1020px) {
  .nav-cta {
    display: none;
  }

  .hero,
  .split,
  .contact,
  .conversion {
    grid-template-columns: 1fr;
  }

  .problem-grid,
  .card-grid.four,
  .dish-grid,
  .story-grid,
  .process-line,
  .package-grid,
  .card-grid.three {
    grid-template-columns: repeat(2, 1fr);
  }

  .conversion {
    align-items: start;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 12px 16px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-panel {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(74, 49, 39, 0.12);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .nav-panel a {
    padding: 13px 10px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 104px;
  }

  .hero-content h1 {
    font-size: clamp(3rem, 16vw, 4.5rem);
  }

  .hero-visual,
  .split-media {
    min-height: 360px;
  }

  .hero-visual .photo,
  .split-media .photo,
  .visual-img {
    min-height: 360px;
  }

  .section {
    padding-block: 66px;
  }

  .problem-grid,
  .card-grid.four,
  .dish-grid,
  .story-grid,
  .process-line,
  .package-grid,
  .card-grid.three,
  .reservation-form {
    grid-template-columns: 1fr;
  }

  .process-line::before {
    display: none;
  }

  .conversion {
    margin-inline: 18px;
  }

  .footer {
    grid-template-columns: 1fr;
  }
}
