/* ===== Variables ===== */
:root {
  --color-bg: #FFF8F0;
  --color-bg-alt: #FBEDE0;
  --color-text: #2B221C;
  --color-text-soft: #6B5C52;
  --color-primary: #E0703F;
  --color-primary-dark: #C9552A;
  --color-navy: #16323F;
  --color-gold: #D4A24E;
  --color-whatsapp: #25D366;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(43, 34, 28, 0.12);
  --header-height: 76px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.icon { width: 20px; height: 20px; fill: currentColor; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(224, 112, 63, 0.35);
}
.btn--primary:hover { background: var(--color-primary-dark); transform: translateY(-2px); }

.btn--outline {
  background: transparent;
  border-color: rgba(255,255,255,0.8);
  color: #fff;
}
.btn--outline:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }

.btn--whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
  padding: 10px 20px;
  font-size: 0.9rem;
}
.btn--whatsapp:hover { background: #1ebe5a; transform: translateY(-2px); }

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.header.scrolled {
  background: rgba(255, 248, 240, 0.95);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  backdrop-filter: blur(8px);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  transition: color 0.3s ease;
}
.header.scrolled .logo { color: var(--color-navy); }
.logo span { color: var(--color-gold); }
.logo--footer { color: #fff; margin-bottom: 8px; }

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__link {
  font-weight: 500;
  font-size: 0.95rem;
  color: #fff;
  position: relative;
  transition: color 0.3s ease;
}
.header.scrolled .nav__link { color: var(--color-text); }
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--color-primary);
  transition: width 0.25s ease;
}
.nav__link:hover::after { width: 100%; }
.nav__cta { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}
.header.scrolled .hamburger span, .nav.open ~ .hamburger span { background: var(--color-navy); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22,50,63,0.55) 0%, rgba(22,50,63,0.65) 60%, rgba(22,50,63,0.85) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 20px;
  max-width: 720px;
}
.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 18px;
}
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  margin-bottom: 36px;
  color: rgba(255,255,255,0.9);
}
.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 20px;
}
.hero__scroll span {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot {
  0% { opacity: 1; top: 8px; }
  100% { opacity: 0; top: 22px; }
}

/* ===== Sections ===== */
.section {
  padding: 100px 0;
}
.section--alt { background: var(--color-bg-alt); }

.section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}
.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  text-align: center;
  color: var(--color-navy);
  margin-bottom: 14px;
}
.section__lead {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
  color: var(--color-text-soft);
}

/* ===== Menu ===== */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.menu-tab {
  padding: 10px 22px;
  border-radius: 999px;
  border: 2px solid var(--color-primary);
  background: transparent;
  color: var(--color-primary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
}
.menu-tab:hover { background: rgba(224,112,63,0.1); }
.menu-tab.active { background: var(--color-primary); color: #fff; }

.menu-panel {
  display: none;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeIn 0.4s ease;
}
.menu-panel.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px);} to { opacity:1; transform:translateY(0);} }

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px dashed rgba(43,34,28,0.15);
}
.menu-item:last-child { border-bottom: none; }
.menu-item__info h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-navy);
  margin-bottom: 4px;
}
.menu-item__info p {
  font-size: 0.9rem;
  color: var(--color-text-soft);
}
.menu-item__price {
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
  font-size: 1.05rem;
}

/* ===== Gallery ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  border: none;
  padding: 0;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item::after {
  content: '+';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  background: rgba(22,50,63,0);
  transition: background 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}
.gallery__item:hover::after { background: rgba(22,50,63,0.35); opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15,20,22,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox__close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  cursor: pointer;
  line-height: 1;
}

/* ===== Location ===== */
.location {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 30px;
  align-items: stretch;
}
.location__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 360px;
}
.location__info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.info-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.info-card h3 {
  font-family: var(--font-heading);
  color: var(--color-navy);
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.info-card p { color: var(--color-text-soft); font-size: 0.92rem; }
.location__info .btn { justify-content: center; margin-top: auto; }

/* ===== Contact ===== */
.contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.contact-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(43,34,28,0.16); }
.contact-card__icon { font-size: 2.2rem; display: block; margin-bottom: 14px; }
.contact-card h3 {
  font-family: var(--font-heading);
  color: var(--color-navy);
  margin-bottom: 6px;
}
.contact-card p { color: var(--color-text-soft); font-size: 0.92rem; }

/* ===== Footer ===== */
.footer {
  background: var(--color-navy);
  color: rgba(255,255,255,0.8);
  padding: 48px 0;
  text-align: center;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.footer p { font-size: 0.85rem; }
.footer__social {
  display: flex;
  gap: 20px;
  margin-top: 6px;
}
.footer__social a { font-size: 0.85rem; color: var(--color-gold); }
.footer__social a:hover { text-decoration: underline; }

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 60px;
  height: 60px;
  background: var(--color-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  z-index: 900;
  animation: pulse 2.4s infinite;
}
.whatsapp-float .icon { width: 30px; height: 30px; fill: #fff; }
.whatsapp-float:hover { transform: scale(1.08); }
@keyframes pulse {
  0% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5), 0 0 0 10px rgba(37, 211, 102, 0.15); }
  100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5); }
}

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .location { grid-template-columns: 1fr; }
  .location__map { min-height: 280px; }
  .contact { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--color-bg);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 28px;
    padding: 40px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    transition: right 0.35s ease;
    z-index: 1050;
  }
  .nav.open { right: 0; }
  .nav__link { color: var(--color-text) !important; font-size: 1.1rem; }
  .nav__cta { margin-left: 0; }
  .hamburger { display: flex; }

  .gallery { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 70px 0; }
}

@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .whatsapp-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
}
