/* ============================================================
   Lapa's — homepage styles (hero, ticker, story, specials)
   ============================================================ */

/* ---- Cinematic hero ---- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  color: #fff; overflow: hidden; background: var(--jungle-deep);
}
.hero-media { position: absolute; inset: 0; will-change: transform; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,46,31,0.55) 0%, rgba(11,46,31,0.18) 38%, rgba(11,46,31,0.78) 100%),
    radial-gradient(ellipse at 18% 88%, rgba(11,46,31,0.55), transparent 55%);
}
.hero-inner {
  position: relative; width: min(var(--container), 92vw); margin-inline: auto;
  padding: calc(var(--head-h) + 40px) 0 clamp(72px, 11vh, 130px);
}
.hero .hand { font-size: clamp(1.7rem, 3.6vw, 2.6rem); color: var(--mango); display: block; margin-bottom: 6px; }
.hero h1 { color: #fff; max-width: 13ch; margin-bottom: 18px; font-size: clamp(2.7rem, 7vw, 5rem); }
.hero .lede { font-size: clamp(1.05rem, 2vw, 1.3rem); color: rgba(255,255,255,0.92); max-width: 560px; margin-bottom: 30px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero-proof { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 26px; font-size: 0.95rem; color: rgba(255,255,255,0.9); }
.hero-proof .stars { font-size: 1.05rem; }
.hero-proof strong { color: #fff; }
.hero-scrolldown {
  position: absolute; bottom: 26px; right: 5vw; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.7); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.hero-scrolldown .line { width: 2px; height: 44px; background: linear-gradient(var(--mango), transparent); animation: drip 2s ease-in-out infinite; }
@keyframes drip { 0%, 100% { transform: scaleY(0.55); opacity: 0.5; } 50% { transform: scaleY(1); opacity: 1; } }
@media (max-width: 700px) { .hero-scrolldown { display: none; } }

/* ---- Info ticker strip (hours / happy hour / lunch) ---- */
.ticker {
  background: var(--macaw); color: #fff; overflow: hidden; padding: 13px 0;
  font-weight: 800; font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.ticker .track { display: flex; gap: 56px; width: max-content; animation: ticker 30s linear infinite; }
.ticker span { display: inline-flex; align-items: center; gap: 14px; white-space: nowrap; }
.ticker svg { width: 15px; height: 15px; color: var(--mango); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .ticker .track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
}

/* ---- Story / welcome split ---- */
.story-figure { position: relative; }
.story-figure .since {
  position: absolute; right: -8px; bottom: -16px; z-index: 2;
  background: var(--mango); color: var(--jungle-deep); font-family: var(--font-display);
  border-radius: 50%; width: 118px; height: 118px; display: grid; place-items: center; text-align: center;
  font-size: 0.95rem; line-height: 1.15; box-shadow: var(--shadow-lift);
  transform: rotate(-7deg);
}
.story-figure .since strong { font-size: 1.6rem; display: block; }

/* ---- Signature dishes carousel-grid ---- */
.sig-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1000px) { .sig-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .sig-grid { grid-template-columns: 1fr 1fr; gap: 13px; } }
.sig-card {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5;
  text-decoration: none; box-shadow: var(--shadow-soft); display: block;
}
.sig-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.sig-card:hover img { transform: scale(1.07); }
.sig-card .veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(11,46,31,0.86) 100%);
}
.sig-card figcaption {
  position: absolute; left: 18px; right: 18px; bottom: 16px; color: #fff;
}
.sig-card figcaption .name { font-family: var(--font-display); font-size: clamp(1.05rem, 2vw, 1.3rem); display: block; }
.sig-card figcaption .sub { font-size: 0.8rem; color: var(--mango); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }

/* ---- Specials band (happy hour + lunch) ---- */
.special-card {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 380px;
  display: flex; align-items: flex-end; color: #fff; text-decoration: none;
  box-shadow: var(--shadow-lift);
}
.special-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.special-card:hover img { transform: scale(1.05); }
.special-card .veil { position: absolute; inset: 0; background: linear-gradient(185deg, rgba(11,46,31,0.1) 30%, rgba(11,46,31,0.88) 100%); }
.special-card .inner { position: relative; padding: 28px; }
.special-card .badge {
  display: inline-block; background: var(--mango); color: var(--jungle-deep);
  font-weight: 800; font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 12px;
}
.special-card h3 { color: #fff; font-size: 1.65rem; margin-bottom: 6px; }
.special-card p { color: rgba(255,255,255,0.88); margin: 0 0 14px; font-size: 0.98rem; }
.special-card .link { color: var(--mango); font-weight: 800; font-size: 0.9rem; letter-spacing: 0.05em; text-transform: uppercase; }

/* ---- Stats / counters ---- */
.stat { text-align: center; }
.stat .num { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--mango); display: block; line-height: 1; }
.stat .lbl { font-size: 0.88rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; color: rgba(255,255,255,0.75); margin-top: 8px; display: block; }

/* ---- Reviews ---- */
.review-card { display: flex; flex-direction: column; gap: 14px; height: 100%; }
.review-card .stars { font-size: 1.05rem; }
.review-card blockquote { margin: 0; font-size: 1.02rem; flex: 1; }
.review-card cite { font-style: normal; font-weight: 800; color: var(--jungle); font-size: 0.92rem; }

/* ---- Visit / map band ---- */
.visit-card {
  background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow-lift);
  padding: clamp(26px, 4vw, 44px); border: 1px solid var(--line);
}
.visit-card .hours-list { color: var(--ink); }
.visit-card .hours-list strong { color: var(--jungle-deep); }
.map-frame { border: 0; width: 100%; height: 100%; min-height: 380px; border-radius: var(--radius); box-shadow: var(--shadow-soft); }

/* ---- Macaw brand moment ---- */
.macaw-band { position: relative; }
.macaw-band .blob-frame { max-width: 420px; margin-inline: auto; }

/* ---- Parallax leaves decorations ---- */
.leaf-deco { position: absolute; pointer-events: none; opacity: 0.16; z-index: 0; }
.leaf-deco.tl { top: -30px; left: -40px; width: 220px; transform: rotate(-20deg); }
.leaf-deco.br { bottom: -40px; right: -30px; width: 260px; transform: rotate(140deg); }
