:root {
  --mustard: #c9a227;
  --mustard-dark: #9a7412;
  --black: #101010;
  --off-white: #f8f5ed;
  --white: #ffffff;
  --gray: #6f6f6f;
  --line: #ded8ca;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--black);
  background: var(--off-white);
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(16, 16, 16, 0.96);
  color: var(--white);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-placeholder {
  width: 54px;
  height: 54px;
  border: 2px dashed var(--mustard);
  color: var(--mustard);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
  border-radius: 50%;
}

.brand-name {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
}

.brand-tagline {
  display: block;
  color: #c7c7c7;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--mustard);
}

.menu-toggle {
  display: none;
  color: var(--white);
  background: transparent;
  border: 0;
  font-size: 1.7rem;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(16,16,16,0.96) 0%, rgba(16,16,16,0.9) 48%, rgba(16,16,16,0.68) 100%),
    radial-gradient(circle at 82% 20%, rgba(216,165,31,0.55), transparent 33%),
    var(--black);
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -120px -180px auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 70px solid rgba(216,165,31,0.12);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: center;
  padding: 80px 0;
}

.eyebrow,
.section-kicker {
  display: inline-block;
  color: var(--mustard);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero h1,
.section-heading h2,
.split h2,
.service-copy h2,
.cta-content h2 {
  font-family: "Playfair Display", serif;
  line-height: 1.08;
  margin: 0;
}

.hero h1 {
  font-size: clamp(3.2rem, 7vw, 6.2rem);
  max-width: 800px;
}

.hero-copy p {
  max-width: 680px;
  color: #d7d7d7;
  font-size: 1.08rem;
  margin: 24px 0 34px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.92rem;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.btn-primary {
  background: var(--mustard);
  color: var(--black);
}

.btn-primary:hover {
  background: #dfbd55;
}

.btn-outline {
  border: 1px solid rgba(255,255,255,0.55);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

.hero-card {
  background: var(--white);
  color: var(--black);
  padding: 14px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.hero-card-note {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 18px 12px 10px;
}

.hero-card-note strong {
  font-size: 1.1rem;
}

.hero-card-note span {
  color: var(--gray);
  font-size: 0.9rem;
}

.image-placeholder {
  min-height: 210px;
  border: 2px dashed rgba(16,16,16,0.2);
  background:
    linear-gradient(135deg, rgba(216,165,31,0.22), rgba(16,16,16,0.08)),
    var(--off-white);
  display: grid;
  place-items: center;
  text-align: center;
  color: #5b5548;
  font-weight: 700;
  padding: 20px;
  border-radius: 16px;
}

.image-placeholder.large {
  min-height: 390px;
}

.image-placeholder.tall {
  min-height: 560px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}

.split h2,
.section-heading h2,
.service-copy h2,
.cta-content h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.split p {
  margin: 0;
  color: var(--gray);
  font-size: 1.05rem;
}

.menu-section {
  background: var(--white);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 44px;
}

.section-heading p {
  color: var(--gray);
  margin-top: 16px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.menu-card {
  background: var(--off-white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #eee7d7;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.09);
}

.menu-card .image-placeholder {
  border: 0;
  border-radius: 0;
  min-height: 190px;
}

.menu-card-body {
  padding: 22px;
}

.menu-card h3 {
  margin: 0 0 8px;
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
}

.menu-card p {
  margin: 0;
  color: var(--gray);
  font-size: 0.9rem;
}

.menu-card.featured {
  background: var(--black);
  color: var(--white);
}

.menu-card.featured p {
  color: #c7c7c7;
}

.badge {
  display: inline-block;
  background: var(--mustard);
  color: var(--black);
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.service-section {
  background: var(--off-white);
}

.service-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.service-copy p {
  color: var(--gray);
  margin: 20px 0 26px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--mustard-dark);
  font-weight: 900;
}

.area-box {
  padding: 18px 20px;
  border-left: 5px solid var(--mustard);
  background: var(--white);
  margin-bottom: 28px;
}

.area-box span,
.area-box strong {
  display: block;
}

.area-box span {
  color: var(--gray);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.area-box strong {
  margin-top: 4px;
  font-size: 1.08rem;
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.cta-section {
  background: var(--mustard);
  padding: 76px 0;
}

.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.cta-content p {
  margin: 16px 0 0;
  max-width: 650px;
}

.dark-kicker {
  color: var(--black);
}

.btn-light {
  background: var(--white);
  color: var(--black);
}

.btn-black {
  background: var(--black);
  color: var(--white);
}

footer {
  background: var(--black);
  color: var(--white);
  padding: 48px 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}

.footer-content p {
  color: #b9b9b9;
  margin: 6px 0 0;
}

.footer-links {
  display: flex;
  gap: 20px;
  font-weight: 700;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.82rem;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(0,0,0,0.28);
}

@media (max-width: 980px) {
  .hero-content,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 620px;
  }

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

  .cta-content {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 68px 0;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

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

  .menu-toggle {
    display: block;
  }

  .brand-tagline {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 64px 0;
    gap: 44px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 15vw, 4.8rem);
  }

  .split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .check-list {
    grid-template-columns: 1fr;
  }

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

  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
}


.logo-real {
  width: 170px;
  height: 54px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
}

.hero-image {
  width: 100%;
  height: 390px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  display: block;
}

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

@media (max-width: 760px) {
  .logo-real {
    width: 135px;
    height: 46px;
  }

  .hero-image {
    height: 280px;
  }

  .menu-image {
    height: 240px;
  }
}


.service-image {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  display: block;
}

@media (max-width: 760px) {
  .service-image {
    height: 360px;
  }
}


/* Ajustes solicitados: fondo negro y tipografía dorada */
.intro,
.menu-section {
  background: var(--black);
  color: var(--mustard);
}

.intro .split p,
.menu-section .section-heading p,
.menu-section .menu-intro-copy p {
  color: #e3c96c;
}

.intro h2,
.menu-section h2,
.menu-section h3,
.menu-section .section-kicker {
  color: var(--mustard);
}

.menu-section .menu-card {
  background: #171717;
  border-color: rgba(201, 162, 39, 0.35);
  color: var(--mustard);
}

.menu-section .menu-card p {
  color: #d9c98f;
}

.menu-section .menu-card.featured {
  background: #0b0b0b;
}

.menu-intro-copy {
  max-width: 900px;
}

.menu-intro-copy h2 {
  max-width: 820px;
}

.menu-intro-copy p {
  margin: 14px 0;
  font-size: 1rem;
}

.package-note {
  margin-top: 26px !important;
  padding: 18px 20px;
  border-left: 5px solid var(--mustard);
  background: rgba(201, 162, 39, 0.08);
  border-radius: 10px;
}


/* Ajuste adicional: sección de servicio en negro y dorado */
.service-section {
  background: var(--black);
  color: var(--mustard);
}

.service-section .section-kicker,
.service-section .service-copy h2,
.service-section .check-list li {
  color: var(--mustard);
}

.service-section .service-copy p {
  color: #d9c98f;
}

.service-section .check-list li::before {
  color: var(--mustard);
}

.service-section .area-box {
  background: #171717;
  border-left-color: var(--mustard);
}

.service-section .area-box span {
  color: #cbb873;
}

.service-section .area-box strong {
  color: var(--mustard);
}

.service-section .btn-dark {
  background: var(--mustard);
  color: var(--black);
}

.service-section .btn-dark:hover {
  background: #dfbd55;
}

/* Ajuste final: sección de reserva con fondo blanco */
.cta-section {
  background: #ffffff;
  color: var(--black);
}

.cta-section .dark-kicker {
  color: var(--mustard);
}

.cta-section .cta-content h2,
.cta-section .cta-content p {
  color: var(--black);
}

.cta-section .btn-light {
  background: var(--mustard);
  color: var(--black);
}
