/* ============================================================
   Alaya — "The Place" page (intro + masonry gallery + lightbox)
   ============================================================ */
.place-intro{
  background:
    radial-gradient(1200px 600px at 70% -10%, var(--cream) 0%, var(--sand) 70%);
  text-align:center;
  padding:clamp(3rem,7vw,6rem) 1.5rem clamp(2.5rem,5vw,4rem);
}
.place-intro .ornament{justify-content:center;max-width:300px;margin:0 auto 1.6rem}
.place-eyebrow{
  font-family:var(--sans);
  font-size:.78rem;letter-spacing:.32em;text-transform:uppercase;
  color:var(--gold);margin-bottom:1rem;
}
.place-title{
  font-family:var(--serif);font-weight:500;
  font-size:clamp(2.4rem,5vw,3.8rem);line-height:1.05;
  color:var(--ink);margin-bottom:1.4rem;
}
.place-lead{
  max-width:62ch;margin:0 auto;
  font-size:clamp(1rem,1.4vw,1.15rem);font-weight:300;line-height:1.8;
  color:var(--muted);
}
.place-lead + .place-lead{margin-top:1.2rem}

/* ---- Gallery (uniform aligned grid) ---- */
.place-gallery{
  display:grid;grid-template-columns:repeat(3,1fr);gap:14px;
  max-width:1240px;margin:0 auto;
  padding:clamp(2rem,5vw,4rem) clamp(1rem,3vw,2rem) clamp(3rem,6vw,5rem);
}
.place-gallery figure{
  margin:0;aspect-ratio:1/1;
  border-radius:4px;overflow:hidden;
  position:relative;cursor:zoom-in;
  box-shadow:0 14px 34px -22px rgba(63,55,43,.5);
}
.place-gallery img{
  width:100%;height:100%;object-fit:cover;display:block;
  transition:transform 1s ease;
}
.place-gallery figure::after{
  content:"";position:absolute;inset:0;
  background:rgba(63,55,43,0);transition:background .35s ease;
}
.place-gallery figure:hover img{transform:scale(1.05)}
.place-gallery figure:hover::after{background:rgba(63,55,43,.12)}

@media (max-width:900px){ .place-gallery{grid-template-columns:repeat(2,1fr)} }
@media (max-width:540px){ .place-gallery{grid-template-columns:repeat(2,1fr);gap:10px} }

/* ---- Location map ---- */
.place-map{
  text-align:center;max-width:900px;margin:0 auto;
  padding:clamp(1rem,3vw,2rem) 1.5rem clamp(3.5rem,7vw,6rem);
}
.place-map .ornament{justify-content:center;max-width:300px;margin:0 auto 1.4rem}
.place-map-text{
  max-width:60ch;margin:0 auto 2rem;
  color:var(--muted);font-weight:300;line-height:1.8;
  font-size:clamp(1rem,1.3vw,1.1rem);
}
.place-map-frame{
  border-radius:5px;overflow:hidden;margin-bottom:1.6rem;
  box-shadow:0 20px 50px -28px rgba(63,55,43,.5);
}
.place-map-frame iframe{width:100%;height:430px;border:0;display:block;filter:saturate(.92)}
@media (max-width:560px){ .place-map-frame iframe{height:320px} }

/* ---- Lightbox ---- */
.lightbox{
  position:fixed;inset:0;z-index:200;
  background:rgba(34,28,20,.92);
  display:none;align-items:center;justify-content:center;
  opacity:0;transition:opacity .3s ease;
}
.lightbox.is-open{display:flex;opacity:1}
.lightbox img{
  max-width:92vw;max-height:86vh;
  border-radius:4px;box-shadow:0 30px 80px -20px rgba(0,0,0,.7);
}
.lb-btn{
  position:absolute;top:50%;transform:translateY(-50%);
  width:52px;height:52px;border-radius:50%;
  background:rgba(255,255,255,.12);color:#fff;border:0;cursor:pointer;
  font-size:24px;line-height:1;display:grid;place-items:center;
  transition:background .25s ease;
}
.lb-btn:hover{background:rgba(255,255,255,.25)}
.lb-prev{left:max(1rem,3vw)}
.lb-next{right:max(1rem,3vw)}
.lb-close{
  top:max(1rem,3vw);right:max(1rem,3vw);transform:none;
  width:46px;height:46px;font-size:22px;
}
@media (max-width:600px){
  .lb-btn{width:42px;height:42px;font-size:20px}
  .lb-prev{left:.5rem}.lb-next{right:.5rem}
}
