/* ============================================================
   MAYFAIR PLACE — Gallery  (matched to v0 screenshots)
   ============================================================ */

:root {
 }

/* ---------- Intro hero (light, text only) ---------- */
.gal-hero { background: var(--cream); padding: 130px 0 90px; text-align: center; }
.gal-hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px,2.4vw,34px);
  color: var(--ink);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin-bottom: 36px;
}
.gal-hero__sub {
  font-size: clamp(15px,1.29vw,19px);
  font-weight: 300;
  color: #6B6B6B;
  max-width: 860px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ---------- Photo grid — CSS columns masonry ---------- */
.gal-grid-wrap { background: var(--cream); padding: 0; }
.gal-grid {
  columns: 3;
  column-gap: 36px;
  max-width: 100%;
  padding: 36px;
}
.gal-tile {
  position: relative;
  break-inside: avoid;
  margin-bottom: 36px;
  overflow: hidden;
  display: block;
}
.gal-tile img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .9s cubic-bezier(.2,.7,.2,1);
}
.gal-tile:hover img { transform: scale(1.03); }
.gal-tile__caption { display: none; }
.gal-tile__name {
  font-size: clamp(14px,1.2vw,17px);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

/* ---------- Cinematic / video section (dark) ---------- */
.gal-film { background: var(--brown-dark); padding: 110px 0 130px; text-align: center; }
.gal-film__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(17px,1.8vw,26px);
  color: var(--cream);
  line-height: 1.04;
  margin-bottom: 26px;
}
.gal-film__sub {
  font-size: clamp(15px,1.29vw,19px);
  font-weight: 300;
  color: rgba(249,247,242,0.62);
  margin-bottom: 64px;
}
.gal-film__frame {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 40px;
}
.gal-film__inner {
  position: relative;
  aspect-ratio: 16/9;
  background: #0e0a07;
  border: 1px solid rgba(249,247,242,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.gal-film__label {
  font-size: clamp(15px,1.29vw,19px);
  font-weight: 300;
  color: rgba(249,247,242,0.55);
}
.gal-film__soon {
  font-size: 16px;
  font-weight: 300;
  color: rgba(249,247,242,0.38);
  letter-spacing: 0.02em;
}

/* ---------- CTA (light, bordered button) ---------- */
.gal-cta { background: var(--cream); padding: 65px 0; text-align: center; }
.gal-cta__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(17px,1.8vw,26px);
  color: var(--ink);
  line-height: 1.04;
  margin-bottom: 28px;
}
.gal-cta__sub {
  font-size: clamp(15px,1.29vw,19px);
  font-weight: 300;
  color: #6B6B6B;
  margin: 0 auto 50px;
}
.btn--gal-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(26,26,26,0.55);
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 22px 56px;
}
.btn--gal-outline:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .gal-grid { columns: 2; column-gap: 20px; padding: 20px; }
  .gal-film__frame { padding: 0 20px; }
}
@media (max-width: 600px) {
  .gal-grid { columns: 1; }
}
