/* ═══════════════════════════════════════════════════════════════
   BREW HAVEN  ·  gallery.css
   Premium gallery page — gl-* namespace
   ═══════════════════════════════════════════════════════════════ */

/* ── Shared primitives ───────────────────────────────────────── */
.gl-section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 60px;
}
.gl-section-header .section-kicker { margin-bottom: 12px; }

.gl-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.8px;
  color: var(--text);
  margin-bottom: 14px;
}
.gl-section-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--para);
}

/* ──────────────────────────────────────────────────────────────
   1. HERO
   ────────────────────────────────────────────────────────────── */
.gl-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.gl-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.gl-hero__bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.06);
  transition: transform 14s ease;
}
.gl-hero:hover .gl-hero__bg-img { transform: scale(1); }

.gl-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    165deg,
    rgba(5,3,1,.93) 0%,
    rgba(9,6,3,.80) 50%,
    rgba(5,3,1,.68) 100%
  );
}
.gl-hero__glow-l {
  position: absolute;
  bottom: -10%; left: -12%;
  width: 55vw; height: 70vh;
  background: radial-gradient(ellipse at 40% 60%, rgba(150,82,28,.14) 0%, transparent 65%);
  filter: blur(80px);
  pointer-events: none;
}
.gl-hero__glow-r {
  position: absolute;
  top: -10%; right: -10%;
  width: 50vw; height: 80vh;
  background: radial-gradient(ellipse at 60% 40%, rgba(201,139,82,.12) 0%, transparent 60%);
  filter: blur(72px);
  pointer-events: none;
}

.gl-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 80px;
}

.gl-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(201,139,82,.08);
  border: 1px solid rgba(201,139,82,.28);
  color: var(--gold-lt);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.gl-hero__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: dotPulse 3s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: .5; transform: scale(.75); }
}

.gl-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(46px, 6vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2.5px;
  color: #F5EFEA;
  max-width: 700px;
  margin-bottom: 22px;
}
.gl-hero__em {
  font-style: italic;
  background: linear-gradient(115deg, var(--gold-warm) 0%, var(--gold-lt) 38%, var(--gold) 75%, #7a4e20 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gl-hero__subtitle {
  font-size: 16px;
  line-height: 1.85;
  color: var(--para);
  max-width: 500px;
  margin-bottom: 36px;
}
.gl-hero__br { display: block; }

.gl-hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ──────────────────────────────────────────────────────────────
   2. CATEGORY FILTER
   ────────────────────────────────────────────────────────────── */
.gl-filter-wrap {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(7,6,4,.92);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border-bottom: 1px solid var(--border);
  padding: 0;
  transition: box-shadow var(--t) var(--ease);
}
.gl-filter-wrap.is-stuck {
  box-shadow: 0 4px 32px rgba(0,0,0,.5), 0 1px 0 rgba(201,139,82,.12);
}

.gl-filter-wrap .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.gl-filter-wrap .container::-webkit-scrollbar { display: none; }

.gl-filter__list {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  flex-shrink: 0;
}

.gl-filter__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 18px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--para);
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition: color .22s var(--ease);
  white-space: nowrap;
  letter-spacing: .2px;
}
.gl-filter__btn i { font-size: 13px; }
/* Gold underline indicator */
.gl-filter__btn::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold), var(--gold-lt));
  border-radius: 2px 2px 0 0;
  transform: translateX(-50%);
  transition: width .3s var(--ease);
}
.gl-filter__btn:hover { color: var(--text); }
.gl-filter__btn.is-active {
  color: var(--gold-lt);
  font-weight: 600;
}
.gl-filter__btn.is-active::after { width: 80%; }

/* Result count pill */
.gl-filter__count {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .4px;
  color: var(--para);
  background: rgba(201,139,82,.08);
  border: 1px solid rgba(201,139,82,.18);
  padding: 5px 14px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color .22s var(--ease);
}

/* ──────────────────────────────────────────────────────────────
   3. MASONRY GALLERY
   ────────────────────────────────────────────────────────────── */
.gl-masonry-section {
  padding: 72px 0 100px;
  background: linear-gradient(180deg, rgba(12,9,6,.95) 0%, var(--bg) 100%);
}

.gl-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: start;
}

.gl-masonry__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Gallery item */
.gl-item {
  position: relative;
  border-radius: var(--r-m);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.gl-item:hover {
  transform: translateY(-6px) scale(1.012);
  box-shadow: 0 0 0 1px rgba(201,139,82,.2), var(--sh-l), 0 0 48px rgba(201,139,82,.08);
  border-color: rgba(201,139,82,.28);
}

/* Varied natural heights via aspect-ratio — creates stagger */
.gl-masonry__col:nth-child(1) .gl-item:nth-child(1) .gl-item__img-wrap { aspect-ratio: 3/4; }
.gl-masonry__col:nth-child(1) .gl-item:nth-child(2) .gl-item__img-wrap { aspect-ratio: 4/3; }
.gl-masonry__col:nth-child(1) .gl-item:nth-child(3) .gl-item__img-wrap { aspect-ratio: 1/1; }
.gl-masonry__col:nth-child(1) .gl-item:nth-child(4) .gl-item__img-wrap { aspect-ratio: 4/5; }

.gl-masonry__col:nth-child(2) .gl-item:nth-child(1) .gl-item__img-wrap { aspect-ratio: 4/3; }
.gl-masonry__col:nth-child(2) .gl-item:nth-child(2) .gl-item__img-wrap { aspect-ratio: 3/4; }
.gl-masonry__col:nth-child(2) .gl-item:nth-child(3) .gl-item__img-wrap { aspect-ratio: 16/9; }
.gl-masonry__col:nth-child(2) .gl-item:nth-child(4) .gl-item__img-wrap { aspect-ratio: 1/1; }

.gl-masonry__col:nth-child(3) .gl-item:nth-child(1) .gl-item__img-wrap { aspect-ratio: 1/1; }
.gl-masonry__col:nth-child(3) .gl-item:nth-child(2) .gl-item__img-wrap { aspect-ratio: 4/5; }
.gl-masonry__col:nth-child(3) .gl-item:nth-child(3) .gl-item__img-wrap { aspect-ratio: 4/3; }
.gl-masonry__col:nth-child(3) .gl-item:nth-child(4) .gl-item__img-wrap { aspect-ratio: 3/4; }

.gl-masonry__col:nth-child(4) .gl-item:nth-child(1) .gl-item__img-wrap { aspect-ratio: 4/5; }
.gl-masonry__col:nth-child(4) .gl-item:nth-child(2) .gl-item__img-wrap { aspect-ratio: 4/3; }
.gl-masonry__col:nth-child(4) .gl-item:nth-child(3) .gl-item__img-wrap { aspect-ratio: 3/4; }
.gl-masonry__col:nth-child(4) .gl-item:nth-child(4) .gl-item__img-wrap { aspect-ratio: 1/1; }

.gl-item__img-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.gl-item__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .55s var(--ease);
}
.gl-item:hover .gl-item__img { transform: scale(1.08); }

/* Dark overlay on hover */
.gl-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,3,1,0);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s var(--ease);
}
.gl-item:hover .gl-item__overlay { background: rgba(5,3,1,.52); }

/* Expand icon */
.gl-item__expand {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(201,139,82,.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201,139,82,.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--gold-lt);
  cursor: pointer;
  opacity: 0;
  transform: scale(.7);
  transition: opacity .28s var(--ease), transform .28s var(--spring),
              background .25s var(--ease), box-shadow .25s var(--ease);
}
.gl-item:hover .gl-item__expand {
  opacity: 1;
  transform: scale(1);
}
.gl-item__expand:hover {
  background: rgba(201,139,82,.28);
  box-shadow: 0 0 20px rgba(201,139,82,.3);
}

/* Category badge */
.gl-item__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(9,7,4,.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(201,139,82,.28);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--gold-lt);
  z-index: 2;
}

/* Image title below card */
.gl-item__title {
  padding: 12px 16px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--para);
  letter-spacing: .2px;
  transition: color .25s var(--ease);
}
.gl-item:hover .gl-item__title { color: var(--gold-lt); }

/* Filter hide/show */
.gl-item.is-hidden {
  display: none;
}

/* Empty state */
.gl-empty {
  padding: 80px 0;
  text-align: center;
  color: var(--para);
}
.gl-empty i {
  font-size: 48px;
  color: rgba(201,139,82,.3);
  display: block;
  margin-bottom: 16px;
}
.gl-empty p { font-size: 15px; }

/* ──────────────────────────────────────────────────────────────
   4. FEATURED EXPERIENCE
   ────────────────────────────────────────────────────────────── */
.gl-feature {
  padding: 100px 0 112px;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(ellipse 65% 55% at 70% 50%, rgba(38,20,6,.35) 0%, transparent 65%),
    linear-gradient(180deg, var(--bg) 0%, rgba(12,9,6,.98) 100%);
  position: relative;
}

.gl-feature__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* Image column */
.gl-feature__img-wrap {
  position: relative;
  max-width: 520px;
}
.gl-feature__img-glow {
  position: absolute;
  inset: -18%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 52%, rgba(201,139,82,.18) 0%, rgba(201,139,82,.05) 45%, transparent 68%);
  filter: blur(44px);
  pointer-events: none;
}
.gl-feature__fig { position: relative; }
.gl-feature__fig::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--r-l);
  background: linear-gradient(145deg, rgba(201,139,82,.2) 0%, transparent 45%, rgba(201,139,82,.08) 100%);
  pointer-events: none;
  z-index: 1;
}
.gl-feature__img {
  width: 100%;
  aspect-ratio: 4/5;
  max-height: calc(100vh - 180px);
  object-fit: cover;
  object-position: center;
  border-radius: var(--r-l);
  box-shadow: 0 0 0 1px rgba(201,139,82,.12), var(--sh-l), var(--sh-xl);
  display: block;
  transition: transform .7s var(--ease);
}
.gl-feature__img-wrap:hover .gl-feature__img { transform: scale(1.02); }

/* Premium pill badge */
.gl-feature__pill {
  position: absolute;
  bottom: 22px; right: -18px;
  display: flex; align-items: center; gap: 7px;
  background: rgba(8,6,3,.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(201,139,82,.3);
  border-radius: 50px;
  padding: 9px 18px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-lt);
  letter-spacing: .3px;
  box-shadow: var(--sh-s);
  animation: cardRise 6s ease-in-out infinite;
  z-index: 5;
}
@keyframes cardRise {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}

/* Copy column */
.gl-feature__copy .section-kicker {
  margin-bottom: 0;
}
.gl-feature__copy .section-kicker::before,
.gl-feature__copy .section-kicker::after { display: none; }

.gl-feature__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.8px;
  color: var(--text);
  margin: 14px 0 0;
}
.gl-feature__rule {
  display: block;
  width: 44px; height: 1.5px;
  background: linear-gradient(90deg, var(--gold-lt), var(--gold), transparent);
  border-radius: 2px;
  margin: 20px 0;
}
.gl-feature__desc {
  font-size: 15px;
  line-height: 1.85;
  color: var(--para);
  margin-bottom: 32px;
}

/* Feature points */
.gl-feature__points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.gl-feature__point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.gl-feature__point-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: var(--r-s);
  background: rgba(201,139,82,.1);
  border: 1px solid rgba(201,139,82,.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  color: var(--gold-lt);
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.gl-feature__point:hover .gl-feature__point-icon {
  background: rgba(201,139,82,.18);
  box-shadow: 0 0 18px rgba(201,139,82,.2);
}
.gl-feature__point strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}
.gl-feature__point p {
  font-size: 13px;
  color: var(--para);
  margin: 0;
  line-height: 1.65;
}

/* ──────────────────────────────────────────────────────────────
   5. INSTAGRAM FEED
   ────────────────────────────────────────────────────────────── */
.gl-insta {
  padding: 100px 0 112px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(14,11,7,.95) 0%, var(--bg) 100%);
}

.gl-insta__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  margin-bottom: 36px;
  border-radius: var(--r-l);
  overflow: hidden;
}

.gl-insta__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  display: block;
}
.gl-insta__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s var(--ease);
  display: block;
}
.gl-insta__item:hover .gl-insta__img { transform: scale(1.1); }

.gl-insta__item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,3,1,0);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: rgba(255,255,255,0);
  transition: background .3s var(--ease), color .3s var(--ease);
}
.gl-insta__item:hover .gl-insta__item-overlay {
  background: rgba(201,139,82,.55);
  color: #fff;
}

/* Follow row */
.gl-insta__follow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  background: linear-gradient(150deg, rgba(22,18,12,.97) 0%, rgba(14,12,8,.99) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-m);
  flex-wrap: wrap;
}
.gl-insta__handle {
  display: flex;
  align-items: center;
  gap: 16px;
}
.gl-insta__handle-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(220,39,67,.35);
}
.gl-insta__handle-name {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.2px;
}
.gl-insta__handle-sub {
  display: block;
  font-size: 12px;
  color: var(--para);
  margin-top: 2px;
}
.gl-insta__follow-btn {
  padding: 12px 28px;
  font-size: 13.5px;
  gap: 8px;
}

/* ──────────────────────────────────────────────────────────────
   6. CUSTOMER MEMORIES
   ────────────────────────────────────────────────────────────── */
.gl-memories {
  padding: 100px 0 112px;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(ellipse 70% 55% at 50% 50%, rgba(201,139,82,.05) 0%, transparent 65%),
    linear-gradient(180deg, rgba(12,9,6,.96) 0%, var(--bg) 100%);
}

.gl-memories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Glassmorphism card */
.gl-mem-card {
  position: relative;
  background: linear-gradient(
    150deg,
    rgba(255,255,255,.042) 0%,
    rgba(201,139,82,.028) 50%,
    rgba(255,255,255,.018) 100%
  );
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-l);
  padding: 28px 28px 24px;
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
/* Gold top shimmer line */
.gl-mem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold-lt) 35%, var(--gold) 50%, var(--gold-lt) 65%, transparent);
  transform: scaleX(0);
  transition: transform .44s var(--ease);
}
.gl-mem-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,139,82,.22);
  box-shadow: 0 0 0 1px rgba(201,139,82,.08), var(--sh-l);
}
.gl-mem-card:hover::before { transform: scaleX(1); }

.gl-mem-card__top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.gl-mem-card__avatar-wrap {
  position: relative;
  flex-shrink: 0;
}
.gl-mem-card__avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201,139,82,.3);
  display: block;
}
.gl-mem-card__avatar-glow {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,139,82,.25) 0%, transparent 70%);
  filter: blur(6px);
  pointer-events: none;
}
.gl-mem-card__meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.gl-mem-card__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .1px;
}
.gl-mem-card__stars {
  font-size: 13px;
  color: var(--gold-warm);
  letter-spacing: 2px;
}
.gl-mem-card__quote-icon {
  font-size: 28px;
  color: rgba(201,139,82,.2);
  margin-left: auto;
  flex-shrink: 0;
  align-self: flex-start;
}

.gl-mem-card__text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--para);
  margin-bottom: 18px;
  font-style: italic;
}

.gl-mem-card__img-wrap {
  border-radius: var(--r-s);
  overflow: hidden;
  aspect-ratio: 16/9;
  margin-bottom: 14px;
}
.gl-mem-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
  display: block;
}
.gl-mem-card:hover .gl-mem-card__img { transform: scale(1.05); }

.gl-mem-card__date {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: rgba(201,139,82,.55);
}

/* ──────────────────────────────────────────────────────────────
   7. FINAL CTA
   ────────────────────────────────────────────────────────────── */
.gl-cta {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.gl-cta__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(201,139,82,.11) 0%, transparent 65%);
  pointer-events: none;
}
.gl-cta__noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.02'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events: none;
}
.gl-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 660px;
  margin: 0 auto;
}
.gl-cta__kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.gl-cta__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 18px;
}
.gl-cta__desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--para);
  margin-bottom: 38px;
}
.gl-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.gl-cta__btn { padding: 15px 38px; font-size: 14.5px; }

/* ──────────────────────────────────────────────────────────────
   LIGHTBOX
   ────────────────────────────────────────────────────────────── */
.gl-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.gl-lightbox[hidden] { display: none; }

.gl-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5,3,1,.94);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  cursor: pointer;
  animation: lbFadeIn .3s var(--ease);
}
@keyframes lbFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.gl-lightbox__panel {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1100px;
  width: 100%;
  animation: lbSlideUp .35s var(--ease);
}
@keyframes lbSlideUp {
  from { opacity: 0; transform: translateY(28px) scale(.97); }
  to   { opacity: 1; transform: none; }
}

.gl-lightbox__close {
  position: absolute;
  top: -16px; right: -16px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(14,12,8,.9);
  border: 1px solid rgba(201,139,82,.28);
  color: var(--gold-lt);
  font-size: 17px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background .22s var(--ease), transform .22s var(--spring), box-shadow .22s var(--ease);
}
.gl-lightbox__close:hover {
  background: rgba(201,139,82,.2);
  box-shadow: 0 0 18px rgba(201,139,82,.25);
  transform: scale(1.1) rotate(90deg);
}

.gl-lightbox__arrow {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(14,12,8,.85);
  border: 1px solid rgba(201,139,82,.24);
  color: var(--gold-lt);
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .22s var(--ease), box-shadow .22s var(--ease), transform .22s var(--spring);
}
.gl-lightbox__arrow:hover {
  background: rgba(201,139,82,.16);
  box-shadow: 0 0 20px rgba(201,139,82,.22);
  transform: scale(1.08);
}

.gl-lightbox__img-wrap {
  flex: 1;
  position: relative;
  border-radius: var(--r-l);
  overflow: hidden;
  background: rgba(14,12,8,.8);
  border: 1px solid rgba(201,139,82,.14);
  min-height: 200px;
  display: flex; align-items: center; justify-content: center;
}
.gl-lightbox__img {
  display: block;
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--r-l);
  transition: opacity .25s var(--ease);
}
.gl-lightbox__img.is-loading { opacity: 0; }

/* Spinner */
.gl-lightbox__loader {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s var(--ease);
}
.gl-lightbox__loader.is-active { opacity: 1; }
.gl-lightbox__loader::after {
  content: '';
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2.5px solid rgba(201,139,82,.2);
  border-top-color: var(--gold);
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.gl-lightbox__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 20px;
  background: linear-gradient(to top, rgba(5,3,1,.8) 0%, transparent 100%);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: .2px;
  border-radius: 0 0 var(--r-l) var(--r-l);
  pointer-events: none;
}

/* ──────────────────────────────────────────────────────────────
   RESPONSIVE
   ────────────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .gl-masonry { grid-template-columns: repeat(3, 1fr); }
  .gl-masonry__col:nth-child(4) { display: none; }
  .gl-insta__grid { grid-template-columns: repeat(3, 1fr); }
  .gl-insta__grid .gl-insta__item:nth-child(n+4) { display: none; }
}

@media (max-width: 991px) {
  .gl-hero__title    { font-size: clamp(42px, 7vw, 64px); }
  .gl-hero__br       { display: none; }

  .gl-masonry { grid-template-columns: repeat(2, 1fr); }
  .gl-masonry__col:nth-child(3),
  .gl-masonry__col:nth-child(4) { display: none; }

  .gl-feature__grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .gl-feature__img-wrap { max-width: 420px; margin: 0 auto; }
  .gl-feature__copy .section-kicker { text-align: center; }
  .gl-feature__rule { margin-left: auto; margin-right: auto; }
  .gl-feature__point { text-align: left; }
  .gl-feature__pill  { right: 4px; }
  .gl-feature__cta   { margin: 0 auto; }

  .gl-memories__grid { grid-template-columns: 1fr 1fr; }

  .gl-insta__grid { grid-template-columns: repeat(3, 1fr); }
  .gl-insta__grid .gl-insta__item:nth-child(n+4) { display: none; }
}

@media (max-width: 767px) {
  .gl-filter__btn { padding: 14px 14px; font-size: 12px; gap: 5px; }
  .gl-filter__btn i { font-size: 12px; }

  .gl-masonry { grid-template-columns: repeat(2, 1fr); }

  .gl-memories__grid { grid-template-columns: 1fr; }
  .gl-insta__grid { grid-template-columns: repeat(2, 1fr); }
  .gl-insta__grid .gl-insta__item:nth-child(n+3) { display: none; }

  .gl-lightbox__arrow { width: 40px; height: 40px; font-size: 16px; }
}

@media (max-width: 575px) {
  .gl-hero__title { font-size: clamp(38px, 9.5vw, 54px); letter-spacing: -1.5px; }
  .gl-hero__subtitle { font-size: 14px; }
  .gl-hero__actions .btn { width: 100%; justify-content: center; }

  .gl-filter__list { gap: 0; }
  .gl-filter__btn  { padding: 13px 11px; font-size: 11.5px; }

  .gl-masonry { grid-template-columns: 1fr; }
  .gl-masonry__col:nth-child(2),
  .gl-masonry__col:nth-child(3),
  .gl-masonry__col:nth-child(4) { display: none; }

  .gl-feature__img { aspect-ratio: 4/3; max-height: none; }

  .gl-insta__grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }
  .gl-insta__grid .gl-insta__item:nth-child(n+3) { display: none; }
  .gl-insta__follow { flex-direction: column; align-items: flex-start; }

  .gl-cta { padding: 80px 0; }
  .gl-cta__actions .btn { width: 100%; justify-content: center; }

  .gl-lightbox__panel { flex-direction: column; gap: 12px; }
  .gl-lightbox__arrow { display: none; }
}
