@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --beige:       #F5EDD8;
  --beige-2:     #EDE0C4;
  --beige-3:     #D9C9A8;
  --olive:       #6B7A3E;
  --olive-light: #8E9E52;
  --olive-bg:    #E8EDD6;
  --orange:      #C8580A;
  --orange-light:#E07833;
  --orange-bg:   #FDF0E4;
  --brown:       #5C3A1E;
  --ink:         #2A1A08;
  --muted:       #7A6548;
  --white:       #FEFCF7;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --nav-h: 70px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

body {
  font-family: var(--font-body);
  background: var(--beige);
  color: var(--ink);
  overflow-x: hidden;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(245,237,216,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--beige-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px,5vw,60px);
  z-index: 100;
  gap: 20px;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--brown);
  flex-shrink: 0;
}

.nav__logo span {
  font-style: italic;
  font-weight: 400;
  color: var(--olive);
}

.nav__links {
  display: flex;
  gap: 32px;
}

.nav__link {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--orange);
  transition: width 0.25s ease;
}

.nav__link:hover { color: var(--orange); }
.nav__link:hover::after { width: 100%; }

.nav__cta {
  background: var(--orange);
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 100px;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav__cta:hover { background: var(--orange-light); transform: translateY(-1px); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--brown);
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  overflow: hidden;
  position: relative;
}

.hero__left {
  padding: clamp(40px, 6vw, 80px);
  position: relative;
  z-index: 2;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--olive-bg);
  color: var(--olive);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero__badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--olive);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.8); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 90px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--brown);
  margin-bottom: 20px;
}

.hero__title em {
  font-style: italic;
  color: var(--orange);
}

.hero__desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 420px;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary {
  background: var(--orange);
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 100px;
  transition: background 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--brown);
  font-size: 14px;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: 100px;
  border: 1.5px solid var(--beige-3);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline:hover { border-color: var(--brown); background: var(--beige-2); }

.hero__stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--beige-2);
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--orange);
  display: block;
}

.hero__stat-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.hero__right {
  position: relative;
  height: 100%;
  min-height: calc(100vh - var(--nav-h));
  overflow: hidden;
}

.hero__img-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(340px, 45vw, 560px);
  height: clamp(340px, 45vw, 560px);
  border-radius: 50%;
  background: var(--olive-bg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__img-placeholder {
  font-size: clamp(100px, 15vw, 180px);
  animation: float-hero 4s ease-in-out infinite;
}

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

.hero__tag {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: 0 4px 20px rgba(92,58,30,0.12);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

.hero__tag--1 { top: 22%; right: 8%; }
.hero__tag--2 { bottom: 25%; left: 5%; }
.hero__tag--3 { top: 55%; right: 5%; }

.hero__tag-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

/* ── WAVE ── */
.wave { display: block; width: 100%; overflow: hidden; line-height: 0; }
.wave svg { display: block; width: 100%; }

/* ── SECTION HEADER ── */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1.5px;
  background: var(--orange);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--brown);
  line-height: 1.1;
}

.section-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--orange);
  border-bottom: 1px solid var(--beige-3);
  padding-bottom: 2px;
  transition: border-color 0.2s;
  white-space: nowrap;
}
.section-link:hover { border-color: var(--orange); }

/* ── FEATURED DISH ── */
.featured {
  background: var(--white);
  padding: clamp(48px, 7vw, 80px) clamp(20px, 5vw, 60px);
}

.featured__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 20px;
  align-items: start;
}

.dish-card {
  background: var(--beige);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--beige-2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.dish-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(92,58,30,0.12);
}

.dish-card--featured {
  grid-row: span 2;
}

.dish-card__img {
  width: 100%;
  background: var(--olive-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.dish-card--featured .dish-card__img { height: 320px; }
.dish-card:not(.dish-card--featured) .dish-card__img { height: 180px; }
.dish-card__img img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.4s ease; }
.dish-card:hover .dish-card__img img { transform: scale(1.06); }

.dish-card__img-emoji {
  transition: transform 0.4s ease;
}
.dish-card:hover .dish-card__img-emoji { transform: scale(1.1); }

.dish-card__badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--orange);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

.dish-card__badge--olive {
  background: var(--olive);
}

.dish-card__body {
  padding: 16px 18px 18px;
}

.dish-card__cat {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 5px;
}

.dish-card__name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 6px;
  line-height: 1.2;
}

.dish-card--featured .dish-card__name { font-size: 24px; }

.dish-card__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.dish-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dish-card__price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--orange);
}

.dish-card__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--olive);
}

.dish-card__order {
  background: var(--orange);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  transition: background 0.2s;
}
.dish-card:hover .dish-card__order { background: var(--orange-light); }

/* ── MENU CATEGORIES ── */
.menu-cats {
  background: var(--beige);
  padding: clamp(48px, 7vw, 80px) clamp(20px, 5vw, 60px);
}

.cats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  margin-bottom: 48px;
}

.cat-card {
  background: var(--white);
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
}

.cat-card:hover, .cat-card.active {
  border-color: var(--orange);
  background: var(--orange-bg);
  transform: translateY(-3px);
}

.cat-card__icon { font-size: 32px; margin-bottom: 8px; }
.cat-card__name { font-size: 13px; font-weight: 600; color: var(--brown); }
.cat-card__count { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ── MENU GRID ── */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.menu-item {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--beige-2);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.menu-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(92,58,30,0.1);
}

.menu-item__img {
  width: 80px; height: 80px;
  border-radius: 12px;
  background: var(--olive-bg);
  flex-shrink: 0;
  overflow: hidden;
}
.menu-item__img img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.3s ease; }
.menu-item:hover .menu-item__img img { transform: scale(1.08); }

.menu-item__info { flex: 1; min-width: 0; }

.menu-item__cat {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 3px;
}

.menu-item__name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 3px;
  line-height: 1.2;
}

.menu-item__desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 8px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.menu-item__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-item__price {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--orange);
}

.menu-item__btn {
  background: var(--orange);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  transition: background 0.2s;
}
.menu-item:hover .menu-item__btn { background: var(--orange-light); }

/* ── INFO STRIP ── */
.info-strip {
  background: var(--brown);
  padding: 40px clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(245,237,216,0.85);
}

.info-item__icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(245,237,216,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.info-item__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--beige);
  margin-bottom: 3px;
}

.info-item__val {
  font-size: 13px;
  color: rgba(245,237,216,0.6);
  line-height: 1.5;
}

/* ── FOOTER ── */
.footer {
  background: var(--ink);
  color: var(--beige);
  padding: clamp(40px, 6vw, 64px) clamp(20px, 5vw, 60px) 24px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer__brand em { font-style: italic; color: var(--orange-light); }

.footer__tagline {
  font-size: 13px;
  color: rgba(245,237,216,0.45);
  line-height: 1.8;
  max-width: 240px;
}

.footer__col-title {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,237,216,0.3);
  margin-bottom: 16px;
}

.footer__links { display: flex; flex-direction: column; gap: 10px; }

.footer__link {
  font-size: 13px;
  color: rgba(245,237,216,0.5);
  transition: color 0.2s;
}
.footer__link:hover { color: var(--beige); }

.footer__bottom {
  border-top: 1px solid rgba(245,237,216,0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(245,237,216,0.25);
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--beige);
  z-index: 200;
  flex-direction: column;
  padding: calc(var(--nav-h) + 24px) clamp(20px,5vw,40px) 40px;
}

.mobile-menu.open { display: flex; }

.mobile-menu__close {
  position: absolute;
  top: 22px; right: clamp(20px,5vw,40px);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: clamp(36px, 7vw, 52px);
  font-style: italic;
  color: var(--brown);
  padding: 14px 0;
  border-bottom: 1px solid var(--beige-2);
  transition: color 0.2s;
}
.mobile-menu__link:hover { color: var(--orange); }

/* ── HERO IMG MOBILE ── */
.hero__img-mobile {
  display: none;
  position: absolute;
  top: calc(var(--nav-h) + 16px);
  right: -20px;
  width: 160px;
  height: 160px;
  border-radius: 24px 0 0 24px;
  overflow: hidden;
  box-shadow: -4px 4px 20px rgba(92,58,30,0.2);
}

/* ── NOSOTROS ── */
.nosotros-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.nosotros-imgs-desktop {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.nosotros-imgs-mobile { display: none; }

@media (max-width: 768px) {
  .nosotros-grid { grid-template-columns: 1fr; gap: 32px; }
  .nosotros-imgs-desktop { display: none; }
  .nosotros-imgs-mobile {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 4px;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .nosotros-imgs-mobile::-webkit-scrollbar { display: none; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .featured__grid { grid-template-columns: 1fr 1fr; }
  .dish-card--featured { grid-row: span 1; }
  .dish-card--featured .dish-card__img { height: 200px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-bottom: 40px; position: relative; overflow: hidden; }
  .hero__right { display: none; }
  .hero__img-mobile { display: block; }
  .hero__left { padding: 32px 20px 24px; }
  .featured__grid { grid-template-columns: 1fr; }
  .info-strip { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 480px) {
  .info-strip { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
}