body.gallery-page {
  background: #f7f1e6;
}
.gallery-hero {
  min-height: 48vh;
  padding: 130px 7vw 70px;
  color: white;
  background: linear-gradient(120deg, rgba(23,53,43,.92), rgba(23,53,43,.45)), var(--hero-bg) center/cover;
}
.full-bleed-hero {
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background: linear-gradient(120deg, rgba(23,53,43,.72), rgba(23,53,43,.18)), var(--hero-bg) center/cover;
}
.gallery-hero .back-link {
  display: inline-block;
  color: rgba(255,255,255,.86);
  text-decoration: none;
  margin-bottom: 35px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
}
.gallery-hero h1 { font-size: clamp(3rem, 8vw, 7rem); }
.gallery-hero p { max-width: 760px; color: rgba(255,255,255,.88); }
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 1240px;
  margin: 0 auto;
}
.photo-gallery figure {
  margin: 0;
  background: #fffaf1;
  box-shadow: 0 20px 50px rgba(40,30,20,.08);
}
.photo-gallery img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.photo-gallery figcaption {
  padding: 16px 18px;
  color: #24483b;
  font-weight: 700;
}
.photo-mosaic {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px;
  background: #fffaf1;
  box-shadow: 0 20px 50px rgba(40,30,20,.08);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.photo-mosaic img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  display: block;
  object-fit: cover;
}

.photo-mosaic video {
  width: 100%;
  min-height: 330px;
  display: block;
  object-fit: cover;
  background: #17352b;
}
.lake-view-mosaic .gallery-video {
  grid-column: span 2;
  max-height: 620px;
}
.lake-view-mosaic img:first-child {
  grid-column: span 2;
  min-height: 520px;
}
.amenities-mosaic {
  grid-template-columns: repeat(2, 1fr);
}
.amenities-mosaic img {
  min-height: 300px;
}

.viewer-shell {
  max-width: 1320px;
  margin: 0 auto;
}
.viewer-toolbar {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.viewer-note { color: #666057; margin-left: auto; }
.map-viewer {
  height: 88vh;
  overflow: hidden;
  position: relative;
  background: #1c2b25;
  border: 1px solid rgba(23,53,43,.25);
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
}
.grab-viewer {
  cursor: grab;
  touch-action: none;
  user-select: none;
}
.grab-viewer.is-dragging { cursor: grabbing; }
.map-viewer img {
  display: block;
  width: 2200px;
  max-width: none;
  transform-origin: top left;
  will-change: transform;
  pointer-events: none;
}
.park-renderings {
  margin-top: 42px;
}
.park-renderings h2 {
  color: #17352b;
  text-align: center;
  margin-bottom: 24px;
}
.park-rendering-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 18px;
  background: #fffaf1;
  box-shadow: 0 20px 50px rgba(40,30,20,.08);
}
.park-rendering-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}
.park-rendering-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  background: #f7f1e6;
}
.park-rendering-grid figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 9px 12px;
  background: rgba(23, 53, 43, .82);
  color: white;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .03em;
}
.plat-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
}
.plat-links a {
  display: inline-block;
  padding: 13px 18px;
  border: 1px solid #b68a46;
  color: #17352b;
  background: #fffaf1;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .78rem;
  font-weight: 700;
}
.plat-links a:hover {
  background: #b68a46;
  color: white;
}
@media (max-width: 800px) {
  .photo-gallery { grid-template-columns: 1fr; }
  .viewer-note { width: 100%; margin-left: 0; }
}
