/* EXACT COPY OF YOUR HERO STYLES */
:root{
  --cream:#FFF8E7; --deep:#0E1510; --green:#2D5016; --gold:#D4AF37; --aqua:#5BE6E2;
  --ink:#0b0f14; --inkd:#E9F0EA; --r:22px; --blur:28px; --shadow:0 28px 90px rgba(0,0,0,.28);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif;overflow-x:hidden;background:var(--cream);color:var(--ink);line-height:1.6}
a{color:inherit;text-decoration:none}

/* HERO (YOUR EXACT CODE) */
.hero{position:relative;isolation:isolate;min-height:100svh;display:grid;place-items:center;overflow:hidden}
canvas#fx{position:absolute;inset:0;z-index:-1;display:block}
.hero-wrap{max-width:1200px;margin:auto;padding:96px 20px 64px;display:grid;grid-template-columns:1.05fr .95fr;gap:36px;align-items:center}
.kicker{letter-spacing:.22em;text-transform:uppercase;font-size:.8rem;color:var(--green);font-weight:800}
h1{margin:.3em 0 .2em;font-size:clamp(40px,7vw,76px);line-height:1.03;letter-spacing:-.02em;color:#0c120e}
.lead{color:#415046;max-width:56ch}
.cta-row{margin-top:22px;display:flex;gap:12px;flex-wrap:wrap}
.cta{display:inline-flex;align-items:center;gap:10px;padding:12px 18px;border-radius:999px;font-weight:800}
.cta.primary{background:var(--green);color:var(--cream);border:1px solid rgba(0,0,0,.12)}
.cta.ghost{border:1px solid rgba(0,0,0,.12);background:rgba(255,255,255,.65)}

/* GLASS (YOUR EXACT CODE) */
.glass{position:relative;border-radius:var(--r);padding:26px;background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.38);backdrop-filter:blur(var(--blur)) saturate(150%);-webkit-backdrop-filter:blur(var(--blur)) saturate(150%);box-shadow:var(--shadow);transition:transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, border-color .35s}
.glass::after{content:"";position:absolute;inset:0;border-radius:inherit;background:linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,0) 26%);mix-blend-mode:soft-light;opacity:.6;pointer-events:none}
.glass:hover{transform:translateY(-8px) rotate3d(1,1,0,0.5deg) scale(1.01);box-shadow:0 50px 140px rgba(0,0,0,.35);border-color:rgba(212,175,55,.6)}
.glass h3{margin:6px 0 8px;color:#102015}

/* REVEAL (YOUR EXACT CODE) */
.reveal{opacity:0;transform:translateY(18px);transition:opacity .7s ease, transform .7s ease}
.reveal.in{opacity:1;transform:none}
@media (prefers-reduced-motion:reduce){.reveal{transition:none}}
/* ===== PREMIUM PAGE CSS ===== */
/* Section Styles */
.section {
  padding: 120px 20px;
  position: relative;
}

.section-content {
  max-width: 1200px;
  margin: 0 auto;
}

.eyebrow {
  letter-spacing: .22em;
  color: var(--green);
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.title {
  font-size: clamp(28px, 4.2vw, 44px);
  letter-spacing: -.02em;
  margin: .3em 0;
  color: var(--ink);
}

.sub {
  color: #415046;
  max-width: 66ch;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Theme stages */
.stage-light {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.55));
  color: var(--ink);
}

.stage-light::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(0,0,0,.03) 0 12px, transparent 12px 24px), 
              radial-gradient(900px 600px at 10% -10%, rgba(45,80,22,.10), transparent 60%), 
              radial-gradient(1000px 800px at 110% 120%, rgba(26,46,10,.10), transparent 60%);
  opacity: .8;
  z-index: -1;
}

.stage-dusk {
  position: relative;
  background: radial-gradient(1200px 800px at 15% -10%, #1a2c1a, transparent 60%), 
              radial-gradient(1200px 800px at 120% 120%, #112016, transparent 60%), 
              linear-gradient(#0f1712, #0f1712);
  color: var(--inkd);
}

.stage-dusk .eyebrow {
  color: var(--aqua);
}

.stage-dusk .title,
.stage-dusk .sub {
  color: var(--inkd);
}

.stage-night {
  position: relative;
  background: radial-gradient(1200px 900px at 50% -20%, #051211, transparent 60%), 
              linear-gradient(#070c0b, #070c0b);
  color: var(--inkd);
}

.stage-night .eyebrow {
  color: var(--aqua);
}

.stage-night .title,
.stage-night .sub {
  color: var(--inkd);
}

/* Experience Grid */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.experience-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.experience-grid h3 {
  margin: 6px 0 8px;
  color: var(--green);
  font-size: 1.4rem;
}

.experience-grid p {
  color: #415046;
  line-height: 1.6;
}

.stage-dusk .experience-grid p,
.stage-night .experience-grid p {
  color: var(--inkd);
}

/* Cabana Showcase */
.cabana-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.cabana-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin: 30px 0;
}

.feature {
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(90, 230, 226, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--aqua);
  font-size: 1.2rem;
}

.feature-text {
  font-weight: 600;
  color: var(--ink);
}

.stage-dusk .feature-text,
.stage-night .feature-text {
  color: var(--inkd);
}

.cabana-visual {
  position: relative;
  height: 400px;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(28px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 22px;
  padding: 25px;
  box-shadow: 0 28px 90px rgba(0,0,0,.28);
  width: 280px;
  transition: all 0.5s ease;
}

.floating-card:nth-child(1) {
  top: 0;
  left: 0;
  transform: rotate(-5deg);
  z-index: 3;
}

.floating-card:nth-child(2) {
  bottom: 40px;
  right: 0;
  transform: rotate(3deg);
  z-index: 2;
}

.floating-card:hover {
  transform: translateY(-10px) rotate(0deg);
  box-shadow: 0 50px 140px rgba(0, 0, 0, 0.35);
}

/* Menu Styles */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 40px 0;
}

.menu-tab {
  background: transparent;
  border: 2px solid rgba(0,0,0,.12);
  color: var(--ink);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu-tab.active {
  background: var(--green);
  color: var(--cream);
  border-color: var(--green);
}

.menu-tab:hover:not(.active) {
  border-color: var(--aqua);
}

.stage-dusk .menu-tab,
.stage-night .menu-tab {
  border-color: rgba(255,255,255,.38);
  color: var(--inkd);
}

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

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.menu-item-header h3 {
  margin: 0;
  color: var(--green);
  font-size: 1.3rem;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--aqua);
}

.ingredients {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}

.ingredient {
  background: rgba(90, 230, 226, 0.1);
  color: var(--aqua);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.gallery-item {
  height: 300px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
}

.gallery-content {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.gallery-item h4 {
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.gallery-item p {
  color: var(--cream);
  margin: 0;
}

/* Reservation */
.reservation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.contact-item i {
  color: var(--aqua);
  font-size: 1.2rem;
  margin-top: 5px;
}

.contact-item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--green);
}

.contact-item p {
  margin: 0;
  color: #415046;
}

.stage-dusk .contact-item p,
.stage-night .contact-item p {
  color: var(--inkd);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 12px;
  color: var(--ink);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--aqua);
  background: rgba(255, 255, 255, 0.08);
}

.stage-dusk .form-control,
.stage-night .form-control {
  border-color: rgba(255,255,255,.38);
  color: var(--inkd);
  background: rgba(255, 255, 255, 0.05);
}

.cta.full-width {
  width: 100%;
  justify-content: center;
}

/* Responsive */
@media (max-width: 1100px) {
  .experience-grid, .menu-grid, .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .reservation-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .hero-wrap {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .experience-grid, .menu-grid, .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .cabana-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .cabana-features {
    grid-template-columns: 1fr;
  }
  
  .menu-tabs {
    flex-wrap: wrap;
  }
  
  .cabana-visual {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .cta-row {
    flex-direction: column;
    align-items: center;
  }
  
  .cta {
    width: 100%;
    justify-content: center;
  }
  
  .section {
    padding: 80px 20px;
  }
}

/* ===== YOUR EXACT HERO CSS ===== */
:root{
  --cream:#FFF8E7; --deep:#0E1510; --green:#2D5016; --gold:#D4AF37; --aqua:#5BE6E2;
  --ink:#0b0f14; --inkd:#E9F0EA; --r:22px; --blur:28px; --shadow:0 28px 90px rgba(0,0,0,.28);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif;overflow-x:hidden;background:var(--cream);color:var(--ink);line-height:1.6}
a{color:inherit;text-decoration:none}

/* HERO - CORRECTED FOR SIDE-BY-SIDE LAYOUT */
.hero{
  position:relative;
  isolation:isolate;
  min-height:100svh;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  padding: 0 20px;
}

canvas#fx{
  position:absolute;
  inset:0;
  z-index:-1;
  display:block;
  width:100%;
  height:100%;
}

.hero-wrap{
  max-width:1200px;
  width:100%;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:60px;
  align-items:center;
}

.kicker{
  letter-spacing:.22em;
  text-transform:uppercase;
  font-size:.8rem;
  color:var(--green);
  font-weight:800;
  margin-bottom:20px;
  display:block;
}

h1{
  margin:.3em 0 .2em;
  font-size:clamp(2.5rem, 6vw, 4.5rem);
  line-height:1.1;
  letter-spacing:-.02em;
  color:#0c120e;
  font-weight:800;
}

.lead{
  color:#415046;
  max-width:42ch;
  font-size:1.1rem;
  line-height:1.6;
  margin-bottom:2rem;
}

.cta-row{
  margin-top:2rem;
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.cta{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 28px;
  border-radius:999px;
  font-weight:800;
  font-size:0.95rem;
  transition:all 0.3s ease;
  text-decoration:none;
}

.cta.primary{
  background:var(--green);
  color:var(--cream);
  border:1px solid rgba(0,0,0,.12);
}

.cta.primary:hover{
  background:#3a6a1f;
  transform:translateY(-2px);
}

.cta.ghost{
  border:1px solid rgba(0,0,0,.20);
  background:transparent;
  color:var(--ink);
}

.cta.ghost:hover{
  background:rgba(0,0,0,.05);
  border-color:var(--green);
}

/* GLASS CARD - CORRECTED */
.glass{
  position:relative;
  border-radius:var(--r);
  padding:2.5rem;
  background:rgba(255,255,255,.75);
  border:1px solid rgba(255,255,255,.85);
  backdrop-filter:blur(var(--blur)) saturate(180%);
  -webkit-backdrop-filter:blur(var(--blur)) saturate(180%);
  box-shadow:var(--shadow);
  transition:transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, border-color .35s;
  max-width:380px;
  margin-left:auto;
}

.glass::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:linear-gradient(135deg, rgba(255,255,255,.45), rgba(255,255,255,0) 60%);
  mix-blend-mode:soft-light;
  opacity:.8;
  pointer-events:none;
}

.glass:hover{
  transform:translateY(-8px) rotate3d(1,1,0,0.5deg) scale(1.02);
  box-shadow:0 40px 120px rgba(0,0,0,.25);
  border-color:rgba(212,175,55,.4);
}

.glass h3{
  margin:0 0 1rem 0;
  color:#2D5016;
  font-size:1.4rem;
  font-weight:800;
  letter-spacing:-0.01em;
}

.glass p{
  margin:0;
  color:#415046;
  line-height:1.6;
  font-size:1rem;
}

/* REVEAL ANIMATION */
.reveal{
  opacity:1;
  transform:none;
}

/* RESPONSIVE */
@media (max-width: 968px) {
  .hero-wrap{
    grid-template-columns:1fr;
    gap:40px;
    text-align:center;
  }
  
  .glass{
    margin:0 auto;
    max-width:400px;
  }
  
  .lead{
    max-width:100%;
    margin-left:auto;
    margin-right:auto;
  }
}

@media (max-width: 640px) {
  .hero{
    padding:0 16px;
  }
  
  .cta-row{
    flex-direction:column;
    align-items:center;
  }
  
  .cta{
    width:100%;
    max-width:280px;
    justify-content:center;
  }
  
  .glass{
    padding:2rem;
  }
}
/* ===== HERO CSS FIX ===== */
:root{
  --cream:#FFF8E7; --deep:#0E1510; --green:#2D5016; --gold:#D4AF37; --aqua:#5BE6E2;
  --ink:#0b0f14; --inkd:#E9F0EA; --r:22px; --blur:28px; --shadow:0 28px 90px rgba(0,0,0,.28);
}

.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 80px 20px;
}

.hero-wrap{
  max-width:1100px;
  width:100%;
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap:40px;
  align-items:center;
}

/* Reduce glass card size */
.glass{
  border-radius:var(--r);
  padding:1.8rem;
  background:rgba(255,255,255,.75);
  border:1px solid rgba(255,255,255,.85);
  backdrop-filter:blur(var(--blur));
  box-shadow:var(--shadow);
  max-width:320px; /* Reduced from 380px */
  margin-left:auto;
}

.glass h3{
  margin:0 0 0.8rem 0;
  font-size:1.2rem; /* Reduced */
}

.glass p{
  font-size:0.95rem; /* Reduced */
  line-height:1.5;
}

/* Reduce text sizes for better fit */
h1{
  font-size:clamp(2.2rem, 5vw, 3.8rem); /* Reduced */
  line-height:1.1;
}

.lead{
  font-size:1rem; /* Reduced */
  max-width:38ch; /* Reduced */
}

.cta{
  padding:12px 24px; /* Reduced */
  font-size:0.9rem; /* Reduced */
}

/* Tablet - still side by side but tighter */
@media (max-width: 1024px) {
  .hero-wrap{
    gap:30px;
    grid-template-columns: 1.1fr 0.9fr;
  }
  
  .glass{
    max-width:280px; /* Even smaller */
    padding:1.5rem;
  }
}

/* Mobile - stack vertically */
@media (max-width: 768px) {
  .hero-wrap{
    grid-template-columns:1fr;
    gap:30px;
    text-align:center;
  }
  
  .glass{
    margin:0 auto;
    max-width:300px;
    order:2; /* Put card below text on mobile */
  }
  
  .lead{
    max-width:100%;
  }
  
  .cta-row{
    justify-content:center;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero{
    padding:60px 16px;
  }
  
  .glass{
    padding:1.2rem;
    max-width:260px;
  }
  
  .cta{
    width:100%;
    max-width:220px;
  }
}

#heroGlass {
  animation: tumble 12s linear infinite;
  transform-style: preserve-3d;
}


@keyframes tumble {
  0%   { transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg); }
  25%  { transform: rotateX(180deg) rotateY(60deg) rotateZ(15deg); }
  50%  { transform: rotateX(360deg) rotateY(180deg) rotateZ(30deg); }
  75%  { transform: rotateX(540deg) rotateY(240deg) rotateZ(45deg); }
  100% { transform: rotateX(720deg) rotateY(360deg) rotateZ(60deg); }
}
.hero .cta {
  padding: 8px 16px;
  font-size: 0.78rem;
}
.hero .cta-row {
  gap: 8px;
}
/* fix hero overlap with homepage background */
.hero {
  position: relative;
  overflow: hidden;
}

canvas#fx {
  z-index: 0;
}

.hero .hero-wrap {
  position: relative;
  z-index: 1;
}
/* menu accent recolor */
.price,
.ingredient {
  color: var(--gold);
}
.ingredient {
  background: rgba(212, 175, 55, 0.15);
}

/* Cinematic gallery cards */
.gallery-grid {
  perspective: 1200px;
}

.gallery-item {
  --mx: 0.5;
  --my: 0.5;
  --rx: 0deg;
  --ry: 0deg;
  --z: 0px;
  position: relative;
  transform-style: preserve-3d;
  overflow: hidden;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--img, none) center/cover no-repeat;
  transform: translateZ(var(--z)) rotateX(var(--rx)) rotateY(var(--ry));
  filter: blur(10px) saturate(1.2);
  opacity: 0;
  transition: opacity .35s ease, filter .6s ease, transform .6s cubic-bezier(.2,.8,.2,1);
  mask-image: radial-gradient(160px 160px at calc(var(--mx) * 100%) calc(var(--my) * 100%), #000 40%, transparent 60%);
  -webkit-mask-image: radial-gradient(160px 160px at calc(var(--mx) * 100%) calc(var(--my) * 100%), #000 40%, transparent 60%);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: conic-gradient(from 180deg at 50% 50%, rgba(255,255,255,0.0), rgba(255,255,255,0.25), rgba(255,255,255,0.0) 40%);
  mix-blend-mode: soft-light;
  transform: translateX(-60%) rotate(12deg);
  opacity: 0;
  pointer-events: none;
}

.gallery-item.is-hot::before {
  opacity: 1;
  filter: blur(0px) saturate(1.05);
  --z: 30px;
}

.gallery-item.is-hot {
  transform: rotateX(calc((.5 - var(--my)) * 8deg)) rotateY(calc((var(--mx) - .5) * 10deg)) translateZ(0);
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
}

@keyframes sweep {
  0% { transform: translateX(-70%) rotate(12deg); opacity: 0; }
  10% { opacity: .6; }
  50% { transform: translateX(70%) rotate(12deg); opacity: .25; }
  100% { transform: translateX(120%) rotate(12deg); opacity: 0; }
}

.gallery-item.is-hot::after {
  animation: sweep 1.4s ease-out 1;
}

@media (hover: none) and (pointer: coarse) {
  .gallery-item::before {
    mask-image: radial-gradient(220px 220px at 50% 50%, #000 55%, transparent 75%);
    -webkit-mask-image: radial-gradient(220px 220px at 50% 50%, #000 55%, transparent 75%);
  }
}
/* Elegant Cinematic Gallery */
.gallery-grid { perspective: 1200px; }

.gallery-item {
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform, box-shadow;
}

.gallery-item .gallery-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px) saturate(1.1);
  transform: scale(1.08);                 /* slight zoom for parallax headroom */
  opacity: 0;                             /* fade in on hover */
  clip-path: circle(0% at 50% 50%);       /* ripple-reveal start */
}

/* subtle glass beam */
.gallery-item .light-sweep {
  position: absolute;
  inset: -30% -60%;
  pointer-events: none;
  background: linear-gradient(100deg, transparent 30%, rgba(255,255,255,.35), transparent 70%);
  transform: translateX(-60%) rotate(8deg);
  opacity: 0;
  mix-blend-mode: soft-light;
}

.gallery-item .gallery-content {
  position: relative;
  z-index: 2;
  color: var(--inkd);
}

.stage-night .gallery-item .gallery-content { color: var(--inkd); }
.stage-light .gallery-item .gallery-content { color: var(--ink); }

@media (prefers-reduced-motion: reduce) {
  .gallery-item, .gallery-item .gallery-photo { transition: none !important; animation: none !important; }
}
/* mobile: prevent image long-press/save sheet */
.gallery-item { touch-action: manipulation; }
.gallery-photo {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;   /* image won't catch taps; card will */
}


/* Gallery text readability (overrides gold) */
#gallery .gallery-content h4,
#gallery .gallery-content p {
  color: var(--ink);                /* dark on light glass */
}

/* Since this section uses stage-night, default to light text */
.stage-night #gallery .gallery-content h4,
.stage-night #gallery .gallery-content p {
  color: var(--cream);
}

/* When image is revealed, force high contrast + glow */
#gallery .gallery-item.is-hot .gallery-content h4,
#gallery .gallery-item.is-hot .gallery-content p {
  color: #fff;
  text-shadow:
    0 2px 12px rgba(0,0,0,.55),
    0 6px 30px rgba(0,0,0,.45);
}

/* Subtle scrim behind the text during reveal */
#gallery .gallery-content {
  position: relative;
  z-index: 2;
  padding: 20px;
}
#gallery .gallery-content::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 18px;
  background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,.35));
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
}
#gallery .gallery-item.is-hot .gallery-content::before { opacity: 1; }




/* Reservation cards: stronger, smooth bounce */
.reservation-grid .glass {
  transform-origin: center bottom;
  animation: bounce-lift 2s cubic-bezier(.25,.65,.35,1) infinite;
  will-change: transform;
}

.reservation-grid .glass:nth-of-type(2) {
  animation-delay: 1s;
}

@keyframes bounce-lift {
  0%   { transform: translateY(0) scale(1); }
  30%  { transform: translateY(-24px) scale(1.02); } /* higher lift */
  60%  { transform: translateY(0) scale(1); }
  80%  { transform: translateY(-10px) scale(1.01); } /* visible after-bounce */
  100% { transform: translateY(0) scale(1); }
}

@media (hover:hover) {
  .reservation-grid .glass:hover { animation-play-state: paused; }
}

@media (prefers-reduced-motion: reduce) {
  .reservation-grid .glass { animation: none; }
}
