:root {
  --deep-green: #0D3B38;
  --deep-green-dark: #082220;
  --turquoise: #4FBDB4;
  --turquoise-soft: #7fd4cc;
  --sand: #E7DBC3;
  --warm-white: #FAF6EE;
  --transition: 300ms ease;
  --radius-lg: 24px;
  --radius-md: 16px;
  --font-heading: 'Satoshi', sans-serif;
  --font-body: 'Satoshi', sans-serif;
}

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

html, body {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--warm-white);
  background: var(--deep-green-dark);
  font-weight: 400;
  line-height: 1.55;
}

/* Real scroll container. The root document never scrolls (see html, body
   above), so mobile Safari/Chrome never animate the toolbar off our scroll
   gesture — which is what was racing the fixed video layer and leaving a
   gap. No toolbar animation, nothing for the video to lose the race to. */
.app-scroll {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  position: relative;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.01em;
}

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

/* BACKGROUND VIDEO */
.bg-video-wrap {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: -2;
  background: var(--deep-green-dark);
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1200ms ease;
}

.bg-video.active { opacity: 1; }

.bg-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg,
    rgba(8, 34, 32, 0.55) 0%,
    rgba(8, 34, 32, 0.72) 45%,
    rgba(6, 22, 21, 0.88) 100%);
}

/* CONTENT */
.content { position: relative; z-index: 1; }

.section {
  padding: 64px 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--warm-white);
  margin-bottom: 36px;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 24px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 38%, rgba(4, 16, 15, 0.4), transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 480px;
}

.hero-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -12px;
}

.hero-logo-wrap::before {
  content: "";
  position: absolute;
  width: 160%;
  height: 160%;
  background: radial-gradient(circle, rgba(4, 16, 15, 0.65) 0%, rgba(4, 16, 15, 0.32) 45%, transparent 75%);
  filter: blur(18px);
  z-index: 0;
  pointer-events: none;
}

.hero-logo {
  position: relative;
  z-index: 1;
  width: min(82vw, 380px);
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 0 2px rgba(0, 0, 0, 0.85))
    drop-shadow(0 0 6px rgba(0, 0, 0, 0.7))
    drop-shadow(0 0 18px rgba(0, 0, 0, 0.55))
    drop-shadow(0 6px 20px rgba(0, 0, 0, 0.45));
}

.hero-desc {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 5.5vw, 2.1rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--warm-white);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
  margin-top: 15px;
  margin-bottom: 8px;
  max-width: 360px;
}

.hero-social {
  display: flex;
  gap: 22px;
  margin-top: 6px;
}

.social-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-white);
  border: 1.5px solid rgba(250, 246, 238, 0.4);
  border-radius: 50%;
  background: rgba(4, 16, 15, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: color var(--transition), border-color var(--transition), transform var(--transition), background var(--transition);
}
.social-icon svg { width: 24px; height: 24px; filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.5)); }

/* Instagram/Facebook are thin-stroke line icons, TikTok is a solid filled
   glyph — at equal size the outlines read lighter. Bumping their stroke
   weight and nudging size up closes that visual-weight gap without
   touching the (unchanged) 54px circle container. */
.hero-social a:nth-child(1) svg,
.hero-social a:nth-child(2) svg {
  width: 27px;
  height: 27px;
  stroke-width: 2.1;
}
.social-icon:hover {
  color: var(--turquoise-soft);
  border-color: var(--turquoise-soft);
  background: rgba(4, 16, 15, 0.6);
  transform: translateY(-2px);
}

/* RESERVAS */
.reservas-section {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.reserve-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.reserve-block {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(250, 246, 238, 0.16);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.reserve-block:hover {
  transform: translateY(-6px);
  border-color: rgba(127, 212, 204, 0.55);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.35);
}
.reserve-block:active { transform: scale(0.97); }

.reserve-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 600ms ease;
}
.reserve-block:hover .reserve-media,
.reserve-block:active .reserve-media { transform: scale(1.06); }

.reserve-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 22, 21, 0.05) 30%, rgba(6, 22, 21, 0.92) 100%);
}

.reserve-corner {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--warm-white);
  background: rgba(4, 16, 15, 0.45);
  border: 1px solid rgba(250, 246, 238, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-size: 1rem;
  line-height: 1;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.reserve-block:hover .reserve-corner,
.reserve-block:active .reserve-corner {
  background: rgba(79, 189, 180, 0.3);
  border-color: rgba(127, 212, 204, 0.6);
  transform: translate(2px, -2px);
}

.reserve-content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.reserve-content h3 {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--warm-white);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
  line-height: 1.1;
}

.reserve-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--turquoise-soft);
  background: rgba(79, 189, 180, 0.16);
  border: 1px solid rgba(127, 212, 204, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background var(--transition), border-color var(--transition);
}
.reserve-block:hover .reserve-action,
.reserve-block:active .reserve-action {
  background: rgba(79, 189, 180, 0.3);
  border-color: rgba(127, 212, 204, 0.6);
}

.reserve-arrow {
  display: inline-block;
  transition: transform var(--transition);
}
.reserve-block:hover .reserve-arrow,
.reserve-block:active .reserve-arrow {
  transform: translateX(4px);
}

.btn-directions {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: rgba(6, 22, 21, 0.55);
  border: 1.5px solid rgba(250, 246, 238, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--warm-white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}
.btn-directions-icon { font-size: 1.05rem; flex-shrink: 0; }
.btn-directions-text { flex: 1; text-align: left; }
.btn-directions-arrow { flex-shrink: 0; transition: transform var(--transition); }
.btn-directions:hover .btn-directions-arrow { transform: translateX(4px); }
.btn-directions:hover {
  transform: translateY(-2px);
  background: rgba(6, 22, 21, 0.7);
  border-color: rgba(127, 212, 204, 0.6);
}

/* HOURS */
.hours-card {
  background: rgba(4, 16, 15, 0.48);
  border: 1px solid rgba(250, 246, 238, 0.16);
  border-radius: var(--radius-lg);
  padding: 8px 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(250, 246, 238, 0.1);
  font-size: 1.1rem;
}
.hours-row:last-of-type { border-bottom: none; }
.hours-row span:first-child { color: var(--warm-white); font-weight: 500; text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55); }
.hours-row span:last-child { color: rgba(250, 246, 238, 0.9); font-weight: 400; text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55); }
.hours-row .closed { color: rgba(250, 246, 238, 0.65); }

.hours-note {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(250, 246, 238, 0.85);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
  margin-top: 4px;
  padding-top: 16px;
  padding-bottom: 4px;
  border-top: 1px solid rgba(250, 246, 238, 0.12);
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 56px 24px 40px;
  border-top: 1px solid rgba(250, 246, 238, 0.1);
}
.footer-brand {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--turquoise-soft);
}
.footer-sub { font-size: 0.9rem; color: rgba(250, 246, 238, 0.72); margin-top: 4px; }
.footer-loc { font-size: 0.85rem; color: rgba(250, 246, 238, 0.55); margin-top: 12px; }
.footer-copy { font-size: 0.78rem; color: rgba(250, 246, 238, 0.4); margin-top: 6px; }
.footer-credit { font-size: 0.72rem; color: rgba(250, 246, 238, 0.32); margin-top: 18px; }
.footer-credit a { transition: color var(--transition); }
.footer-credit a:hover { color: var(--turquoise-soft); }

/* RESPONSIVE */
@media (min-width: 640px) {
  .reserve-block { aspect-ratio: 16 / 9; }
}

@media (min-width: 768px) {
  .section { padding: 96px 40px; }
  .hero-logo { width: 460px; height: auto; }
  .section-title { font-size: 2.7rem; }
  .reserve-content { padding: 40px 48px; }
  .reserve-content h3 { font-size: 2.1rem; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
