/* ═══════════════════════════════════════════════════ */
/* ═══ MAIN.CSS — Reset, Variables, Global Styles ═══ */
/* ═══════════════════════════════════════════════════ */

/* ═══ CSS VARIABLES ═══ */
:root {
  /* Base */
  --color-base-black: #0a0a0a;
  --color-base-white: #f5f2ee;
  --color-base-gray:  #1a1a1a;
  --color-body-text:  #999;
  --color-border:     #1e1e1e;

  /* Zona China */
  --zona-china-accent: #D4A843;
  --zona-china-red:    #8B1A1A;
  --zona-china-bg:     #0d0805;

  /* Zona Sushi — Sakura */
  --zona-sushi-bg:           #FAFAF8;
  --zona-sushi-text:         #1a1a1a;
  --zona-sushi-accent:       #D4688A;
  --zona-sushi-accent-light: #F2B8C6;
  --zona-sushi-accent-dark:  #A8405E;
  --zona-sushi-gray:         #6b6b6b;

  /* Zona Perú — Vino Andino */
  --zona-peru-bg:             #1a0508;
  --zona-peru-mid:            #2d0b10;
  --zona-peru-accent:         #8B1C2E;
  --zona-peru-accent-bright:  #C0392B;
  --zona-peru-earth:          #C4956A;
  --zona-peru-text:           #f0e6e8;

  /* Functional */
  --green-wa: #25D366;

  /* Fonts */
  --font-display: 'Shippori Mincho', serif;
  --font-heading: 'Cinzel', serif;
  --font-body:    'DM Sans', sans-serif;
  --font-accent:  'Noto Serif JP', serif;

  /* Spacing */
  --section-pad: clamp(3rem, 8vw, 6rem);
  --inner-max:   1280px;
}

/* ═══ RESET ═══ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: var(--font-body);
  background: var(--color-base-black);
  color: var(--color-base-white);
  line-height: 1.6;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}
ul, ol { list-style: none; }

/* ═══ NAVBAR ═══ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 2rem;
  background: rgba(10,10,10,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background .4s, border-color .4s, padding .3s;
}
.navbar.scrolled {
  background: rgba(10,10,10,.97);
  border-bottom-color: var(--color-border);
  padding: .6rem 2rem;
}

.navbar__brand-wrapper {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--color-base-white);
  text-decoration: none;
}
.navbar__logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.navbar__brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
}
.navbar__brand-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.circle-dot {
  font-size: 0.6em;
  vertical-align: middle;
  margin: 0 4px;
}
.navbar__brand-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--zona-china-accent);
}

/* ═══ FLOATING ZONE NAVIGATION ═══ */
.floating-nav {
  position: fixed;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  gap: .25rem;
  background: rgba(15,15,15,.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 50px;
  padding: 5px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  transition: bottom 0.4s ease;
}
.zone-btn {
  padding: .5rem 1.4rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  border-radius: 40px;
  transition: color .3s, background .3s;
  position: relative;
  z-index: 1;
}
.zone-btn.active {
  color: var(--color-base-white);
}
.zone-btn:hover {
  color: rgba(255,255,255,.8);
}
.zone-btn__indicator {
  position: absolute;
  top: 5px; bottom: 5px;
  border-radius: 40px;
  background: rgba(212,168,67,.15);
  border: 1px solid var(--zona-china-accent);
  transition: left .35s cubic-bezier(.4,0,.2,1),
              width .35s cubic-bezier(.4,0,.2,1),
              border-color .35s,
              background .35s,
              box-shadow .35s;
  pointer-events: none;
}

/* Nav actions */
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.navbar__link {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .5px;
  color: rgba(255,255,255,.6);
  transition: color .3s;
}
.navbar__link:hover { color: var(--color-base-white); }
.navbar__link--cta {
  padding: .4rem 1rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 6px;
  color: var(--color-base-white);
  transition: border-color .3s, background .3s;
}
.navbar__link--cta:hover {
  border-color: var(--zona-china-accent);
  background: rgba(212,168,67,.1);
}

/* Hamburger */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 1100;
}
.navbar__toggle span {
  width: 22px; height: 2px;
  background: var(--color-base-white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.navbar__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__toggle.active span:nth-child(2) { opacity: 0; }
.navbar__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0;
  z-index: 1050;
  background: rgba(10,10,10,.97);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .4s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu__inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 1.5rem;
}
.mobile-menu__inner hr {
  width: 60px; border: none;
  border-top: 1px solid var(--color-border);
  margin: .5rem 0;
}
.zone-btn-mobile {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  padding: .5rem 1.5rem;
  transition: color .3s;
}
.zone-btn-mobile:hover { color: var(--color-base-white); }
.mobile-menu__link {
  font-size: 1rem;
  color: rgba(255,255,255,.6);
  transition: color .3s;
}
.mobile-menu__link:hover { color: var(--color-base-white); }

@media (max-width: 768px) {
  .navbar__toggle { display: flex; }
  .navbar__zone-btns,
  .navbar__actions { display: none; }
  .navbar { padding: .6rem 1rem; }
}

/* ═══ HERO ═══ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,10,10,.7) 0%,
    rgba(10,10,10,.5) 40%,
    rgba(10,10,10,.8) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 6rem 1.5rem 4rem;
}
.hero__badge {
  display: inline-block;
  padding: .3rem 1rem;
  border: 1px solid rgba(212,168,67,.3);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--zona-china-accent);
  margin-bottom: 1.5rem;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-base-white);
  margin-bottom: 1rem;
}
.hero__title em {
  font-style: italic;
  color: var(--zona-china-accent);
}
.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(.85rem, 1.8vw, 1.1rem);
  color: var(--color-body-text);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
.hero__ctas {
  display: flex; gap: 1rem;
  justify-content: center; flex-wrap: wrap;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; gap: .5rem;
  color: rgba(255,255,255,.3);
  font-size: .7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero__scroll-arrow {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(212,168,67,.5), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .5px;
  transition: all .3s ease;
}
.btn--gold {
  background: var(--zona-china-accent);
  color: var(--color-base-black);
}
.btn--gold:hover {
  background: #ddb854;
  box-shadow: 0 4px 30px rgba(212,168,67,.3);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,.2);
  color: var(--color-base-white);
}
.btn--outline:hover {
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.05);
  transform: translateY(-2px);
}
.btn--wa {
  background: var(--green-wa);
  color: #fff;
  font-weight: 700;
  padding: 1rem 2.5rem;
  font-size: .95rem;
  border-radius: 8px;
}
.btn--wa:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(37,211,102,.3);
}
.btn--wa-full {
  width: 100%;
  padding: 1rem;
  border-radius: 8px;
  background: var(--green-wa);
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  transition: background .3s;
}
.btn--wa-full:hover { background: #1ebe5d; }

/* ═══ FOOTER ═══ */
.footer {
  background: #060606;
  border-top: 1px solid var(--color-border);
  padding: 4rem 1.5rem 2rem;
}
.footer__inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand {
  display: flex; flex-direction: column; align-items: flex-start; gap: .75rem;
}
.footer__logo {
  border-radius: 50%;
  width: 60px; height: 60px;
}
.footer__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 2px;
  color: var(--color-base-white);
}
.footer__col {
  display: flex; flex-direction: column; gap: .5rem;
}
.footer__col h4 {
  font-family: var(--font-heading);
  font-size: .85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: .25rem;
}
.footer__col a,
.footer__col span {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  display: flex; align-items: center; gap: .4rem;
  transition: color .3s;
}
.footer__col a:hover { color: var(--zona-china-accent); }
.footer__bottom {
  max-width: var(--inner-max);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copy {
  font-size: .75rem;
  color: #666;
  letter-spacing: 1px;
}
.footer__creator {
  font-size: .75rem;
  color: #666;
}
.footer__creator a {
  color: rgba(255,255,255,.6);
  text-decoration: underline;
  transition: color .3s;
}
.footer__creator a:hover {
  color: var(--zona-china-accent);
}

/* ═══ GALLERY MODAL ═══ */
.gallery-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.gallery-modal.visible {
  opacity: 1;
  pointer-events: auto;
}
.gallery-modal__img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  object-fit: contain;
}
.gallery-modal__close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  transition: color 0.3s;
}
.gallery-modal__close:hover {
  color: var(--zona-china-accent);
}
.ubicacion__photo {
  cursor: pointer;
  position: relative;
}
.ubicacion__photo::after {
  content: "Ampliar";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.ubicacion__photo:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.05);
}
.ubicacion__block-icon svg {
  color: var(--zona-china-accent);
}

/* ═══ TOAST ═══ */
.toast {
  position: fixed;
  bottom: 6rem; right: 1.5rem;
  z-index: 1300;
  background: var(--color-base-gray);
  border: 1px solid rgba(212,168,67,.2);
  color: var(--color-base-white);
  padding: .65rem 1.25rem;
  border-radius: 10px;
  font-size: .82rem;
  font-weight: 500;
  box-shadow: 0 8px 30px rgba(0,0,0,.5);
  transform: translateY(20px);
  opacity: 0;
  transition: all .35s ease;
  pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ═══ UTILITY ═══ */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ═══ SECCIÓN UBICACIÓN ═══ */
.ubicacion {
  background: #0a0a0a;
  padding: var(--section-pad) 1.5rem;
}
.ubicacion__inner {
  max-width: var(--inner-max);
  margin: 0 auto;
}
.ubicacion__header {
  text-align: center;
  margin-bottom: 3rem;
}
.ubicacion__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 600;
  color: var(--color-base-white);
  margin-bottom: .75rem;
}
.ubicacion__subtitle {
  font-family: var(--font-body);
  font-size: .8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #888;
}

/* Gallery */
.ubicacion__gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 2.5rem;
}
.ubicacion__photo {
  position: relative;
  height: 320px;
  border-radius: 8px;
  overflow: hidden;
}
.ubicacion__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.ubicacion__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(212,168,67,0.08);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.ubicacion__photo:hover img {
  transform: scale(1.02);
}
.ubicacion__photo:hover::after {
  opacity: 1;
}

/* Map + Info grid */
.ubicacion__grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2rem;
  align-items: start;
}
.ubicacion__map iframe {
  width: 100%;
  border-radius: 8px;
}
.ubicacion__map-link {
  display: inline-block;
  margin-top: .75rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--zona-china-accent);
  transition: color .3s;
}
.ubicacion__map-link:hover {
  color: #ddb854;
}

/* Contact info card */
.ubicacion__info {
  background: #111111;
  border-radius: 8px;
  padding: 40px;
}
.ubicacion__block {
  padding: 1.25rem 0;
  border-bottom: 1px solid #222;
}
.ubicacion__block:first-child { padding-top: 0; }
.ubicacion__block:last-of-type { border-bottom: none; }
.ubicacion__block-icon {
  font-size: 1rem;
  margin-bottom: .25rem;
}
.ubicacion__block-label {
  font-family: var(--font-body);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--zona-china-accent);
  margin-bottom: .5rem;
  display: block;
}
.ubicacion__block-text {
  font-size: .95rem;
  color: #e0e0e0;
  line-height: 1.6;
}
.ubicacion__block-text a {
  color: #e0e0e0;
  transition: color .3s;
}
.ubicacion__block-text a:hover {
  color: var(--zona-china-accent);
}
.ubicacion__block-secondary {
  font-size: .85rem;
  color: #888;
  line-height: 1.7;
  margin-top: .25rem;
}
.ubicacion__block-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .5rem;
  padding: .35rem .8rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--zona-china-accent);
  border: 1px solid rgba(212,168,67,0.25);
  border-radius: 5px;
  transition: all .3s;
}
.ubicacion__block-btn:hover {
  background: rgba(212,168,67,0.08);
  border-color: var(--zona-china-accent);
}
.ubicacion__reserve-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 8px;
  background: var(--zona-china-accent);
  color: var(--color-base-black);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .5px;
  transition: all .3s;
}
.ubicacion__reserve-btn:hover {
  background: #ddb854;
  box-shadow: 0 4px 25px rgba(212,168,67,.3);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .ubicacion__gallery {
    grid-template-columns: 1fr;
  }
  .ubicacion__photo {
    height: 220px;
  }
  .ubicacion__grid {
    grid-template-columns: 1fr;
  }
  .ubicacion__info {
    order: -1;
    padding: 30px 20px;
  }
}
