/* ==========================================================
   LAYER 06 — PAGE-SECTION STYLES  (index.html redesign)
   Namespaced .pg-*  (page section level, non-component)
   ========================================================== */

/* ---------------- HERO (cinematic 100svh) ---------------- */
.pg-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--color-white);
}
.pg-hero__slides {
  position: absolute; inset: 0;
  z-index: -2;
}
.pg-hero__slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.4s var(--ease-smooth);
}
.pg-hero__slide.is-active { opacity: 1; }
.pg-hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform-origin: center center;
  animation-duration: 22s;
}
.pg-hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(5,16,38,0.55) 0%, rgba(5,16,38,0.35) 40%, rgba(5,16,38,0.78) 100%),
    radial-gradient(ellipse at 30% 20%, rgba(201,169,98,0.22) 0%, transparent 55%);
  z-index: -1;
}
.pg-hero__inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding-block: clamp(100px, 14svh, 160px) clamp(60px, 10svh, 100px);
}
.pg-hero__copy { max-width: 640px; }
.pg-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.8vw + 0.5rem, 4.6rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-5);
  color: var(--color-white);
}
.pg-hero__title em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold), var(--color-gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pg-hero__sub {
  font-size: var(--text-scale-3);
  line-height: var(--line-relaxed);
  color: rgba(246,243,237,0.88);
  margin: 0 0 var(--space-8);
  max-width: 52ch;
}
.pg-hero__actions {
  display: flex; flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}
.pg-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
  max-width: 460px;
  padding-top: var(--space-6);
  border-top: 1px solid rgba(246,243,237,0.16);
}
.pg-stat__num {
  font-family: var(--font-display);
  font-size: var(--text-scale-5);
  font-weight: 700;
  color: var(--color-gold-light);
  line-height: 1;
  margin-bottom: var(--space-2);
}
.pg-stat__label {
  font-size: var(--text-scale-0);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(246,243,237,0.72);
  font-weight: 500;
}

/* Floating glass booking card */
.pg-hero__booking {
  max-width: 420px;
  margin-left: auto;
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  background: rgba(253,251,247,0.94);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  backdrop-filter: saturate(180%) blur(18px);
  box-shadow: var(--shadow-hero), 0 0 0 1px rgba(201,169,98,0.25);
  color: var(--color-primary-dark);
  position: relative;
}
.pg-booking-card__head {
  display: flex; align-items: center; gap: var(--space-3);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid rgba(26,46,85,0.08);
}
.pg-booking-card__head i {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: var(--color-primary-dark);
  font-size: 1.05rem;
  box-shadow: var(--shadow-gold);
}
.pg-booking-card__head h3 {
  font-family: var(--font-display);
  font-size: var(--text-scale-4);
  font-weight: 700;
  margin: 0;
  color: var(--color-primary-dark);
}
.pg-booking-card__form {
  display: grid;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}
.gl-booking-submit { margin-top: var(--space-2); }
.pg-booking-card__foot {
  display: flex; align-items: center; gap: 8px;
  font-size: var(--text-scale--1);
  color: var(--color-ink-muted);
  padding: var(--space-4);
  background: rgba(201,169,98,0.08);
  border-radius: var(--radius-md);
  border: 1px dashed rgba(201,169,98,0.35);
  margin: 0;
}
.pg-booking-card__foot i { color: var(--color-gold); }

/* Hero slider controls */
.pg-hero__controls {
  position: absolute;
  left: 50%; bottom: clamp(28px, 5svh, 60px);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  z-index: 3;
}
.pg-hero__prev, .pg-hero__next {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: var(--radius-full);
  background: rgba(253,251,247,0.1);
  border: 1px solid rgba(246,243,237,0.2);
  color: var(--color-white);
  cursor: pointer;
  transition: all var(--duration-sm) var(--ease-smooth);
  backdrop-filter: blur(6px);
}
.pg-hero__prev:hover, .pg-hero__next:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-primary-dark);
  transform: translateY(-1px);
}
.pg-hero__dots {
  display: flex; align-items: center; gap: 10px;
}
.pg-hero__dot {
  width: 26px; height: 3px;
  border-radius: var(--radius-full);
  background: rgba(246,243,237,0.3);
  border: none;
  cursor: pointer;
  transition: all var(--duration-md) var(--ease-smooth);
  padding: 0;
}
.pg-hero__dot.is-active {
  width: 44px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  box-shadow: var(--shadow-gold);
}

/* Scroll cue */
.pg-hero__scroll {
  position: absolute;
  left: 50%; bottom: 16px;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 10px;
  color: rgba(246,243,237,0.55);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  z-index: 3;
}
.pg-hero__mouse {
  width: 22px; height: 36px;
  border: 1.5px solid rgba(246,243,237,0.45);
  border-radius: var(--radius-pill);
  display: grid; place-items: start center;
  padding-top: 6px;
}
.pg-hero__mouse-wheel {
  width: 2px; height: 6px;
  background: var(--color-gold);
  border-radius: var(--radius-full);
  animation: fx-float 2s var(--ease-io) infinite;
}

/* ---------------- FEATURE STRIP (overlapping hero) ---------------- */
.pg-feature-strip { padding-top: 0 !important; padding-bottom: 0 !important; }
.pg-feature-strip .gl-container { position: relative; z-index: 10; }

/* ---------------- ABOUT SECTION + COLLAGE ---------------- */
.pg-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.pg-collage {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 4.6;
  max-width: 520px;
  margin: 0 auto;
}
.pg-collage__frame {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-6);
  transition: transform var(--duration-lg) var(--ease-spring);
}
.pg-collage__frame img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.pg-collage__frame:hover { transform: translateY(-4px) scale(1.01); }
.pg-collage__frame--a {
  top: 0; left: 0;
  width: 62%; height: 62%;
  z-index: 3;
  border: 4px solid var(--color-bg-warm);
}
.pg-collage__frame--b {
  top: 18%; right: 0;
  width: 50%; height: 54%;
  z-index: 2;
  border: 4px solid var(--color-gold);
}
.pg-collage__frame--c {
  bottom: 0; left: 14%;
  width: 56%; height: 44%;
  z-index: 4;
  border: 4px solid var(--color-bg-warm);
}
.pg-collage__stamp {
  position: absolute;
  top: 8%; right: 6%;
  width: 96px; height: 96px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary-soft));
  color: var(--color-gold-light);
  display: grid; place-items: center;
  text-align: center;
  transform: rotate(-8deg);
  z-index: 5;
  box-shadow: var(--shadow-4), inset 0 0 0 2px rgba(201,169,98,0.35);
}
.pg-collage__stamp span {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.85;
}
.pg-collage__stamp strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
  display: block;
  color: var(--color-white);
  margin-top: 2px;
}
.pg-about__quote {
  margin: var(--space-8) 0;
  padding: var(--space-6) var(--space-7);
  background: linear-gradient(135deg, rgba(201,169,98,0.10), rgba(201,169,98,0.02));
  border-left: 3px solid var(--color-gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  position: relative;
}
.pg-about__quote > i {
  position: absolute;
  top: -12px; left: 16px;
  color: var(--color-gold);
  font-size: 1.4rem;
  background: var(--color-bg-warm);
  padding: 0 6px;
}
.pg-about__quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-scale-3);
  font-weight: 500;
  color: var(--color-primary-dark);
  margin: 0 0 var(--space-3);
  line-height: 1.55;
}
.pg-about__quote cite {
  font-size: var(--text-scale-0);
  font-weight: 600;
  color: var(--color-gold-dark);
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pg-about__vals {
  display: grid;
  gap: var(--space-4);
  margin: 0 0 var(--space-8);
}
.pg-val {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: var(--space-4);
  align-items: start;
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  background: var(--color-bg-cream);
  border: 1px solid rgba(201,169,98,0.12);
  transition: all var(--duration-md) var(--ease-smooth);
}
.pg-val:hover {
  transform: translateX(4px);
  border-color: rgba(201,169,98,0.45);
  box-shadow: var(--shadow-3);
}
.pg-val > i {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(201,169,98,0.18), rgba(201,169,98,0.05));
  color: var(--color-gold-dark);
  font-size: 1.05rem;
}
.pg-val strong {
  display: block;
  font-size: var(--text-scale-2);
  color: var(--color-primary-dark);
  font-weight: 700;
  margin-bottom: 2px;
}
.pg-val span {
  font-size: var(--text-scale-0);
  color: var(--color-ink-soft);
  line-height: 1.5;
}

/* ---------------- FEATURED APARTMENTS GRID ---------------- */
.pg-apartments__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-7);
  margin-bottom: var(--space-12);
}
.apartment-card__image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  aspect-ratio: 4 / 3;
}
.apartment-card__image img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-smooth);
}
.apartment-card:hover .apartment-card__image img { transform: scale(1.08); }
.apartment-card__price {
  position: absolute;
  top: 14px; left: 14px;
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(11,30,63,0.82);
  color: var(--color-white);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-weight: 700;
  box-shadow: 0 4px 18px -6px rgba(0,0,0,0.3);
}
.apartment-card__price .currency {
  font-size: 0.75rem;
  color: var(--color-gold-light);
  font-weight: 600;
  align-self: center;
}
.apartment-card__price .amount {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}
.apartment-card__price .per {
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(246,243,237,0.7);
}
.apartment-card__body {
  padding: var(--space-6);
}
.apartment-card__title {
  font-family: var(--font-display);
  font-size: var(--text-scale-4);
  font-weight: 700;
  color: var(--color-primary-dark);
  margin: 0 0 var(--space-3);
}
.apartment-card__meta {
  display: flex; flex-wrap: wrap; gap: var(--space-3) var(--space-4);
  padding-bottom: var(--space-4);
  margin-bottom: var(--space-4);
  border-bottom: 1px solid rgba(26,46,85,0.08);
  color: var(--color-ink-soft);
  font-size: var(--text-scale-0);
  font-weight: 500;
}
.apartment-card__meta i { color: var(--color-gold); margin-right: 4px; }
.apartment-card__desc {
  color: var(--color-ink-soft);
  line-height: var(--line-relaxed);
  margin: 0 0 var(--space-5);
  font-size: var(--text-scale-1);
}
.apartment-card__foot {
  display: flex;
  gap: var(--space-3);
  align-items: center;
  flex-wrap: wrap;
}
.pg-apartments__cta { text-align: center; }
.gl-empty-state {
  grid-column: 1 / -1;
  padding: var(--space-12) var(--space-6);
  text-align: center;
  border-radius: var(--radius-lg);
  background: var(--color-bg-cream);
  border: 1px dashed rgba(201,169,98,0.4);
}
.gl-empty-state i {
  font-size: 3rem;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}
.gl-empty-state h4 {
  font-family: var(--font-display);
  font-size: var(--text-scale-4);
  color: var(--color-primary-dark);
  margin: 0 0 var(--space-2);
}
.gl-empty-state p {
  color: var(--color-ink-soft);
  margin: 0 0 var(--space-5);
}

/* ---------------- AMENITIES 6-card grid ---------------- */
.pg-amenities__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}
.pg-amenity {
  padding: var(--space-7);
  border-radius: var(--radius-lg);
  background: var(--color-bg-warm);
  border: 1px solid rgba(26,46,85,0.06);
  transition: all var(--duration-md) var(--ease-spring);
  position: relative;
  overflow: hidden;
}
.pg-amenity::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-smooth);
}
.pg-amenity:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-6);
  border-color: rgba(201,169,98,0.25);
}
.pg-amenity:hover::before { transform: scaleX(1); }
.pg-amenity__icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: var(--color-primary-dark);
  margin-bottom: var(--space-5);
  font-size: 1.35rem;
  box-shadow: var(--shadow-gold);
  transition: transform var(--duration-md) var(--ease-spring);
}
.pg-amenity:hover .pg-amenity__icon {
  transform: rotate(-8deg) scale(1.08);
}
.pg-amenity h4 {
  font-family: var(--font-display);
  font-size: var(--text-scale-3);
  font-weight: 700;
  color: var(--color-primary-dark);
  margin: 0 0 var(--space-3);
}
.pg-amenity p {
  color: var(--color-ink-soft);
  font-size: var(--text-scale-1);
  line-height: var(--line-relaxed);
  margin: 0;
}

/* ---------------- VIDEO CINEMATIC FRAME ---------------- */
.pg-video__frame {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-hero), 0 0 0 4px rgba(201,169,98,0.25);
}
.pg-video__media {
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
  background: var(--color-primary-dark);
}
.pg-video__play {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  background: rgba(5,16,38,0.25);
  border: none;
  cursor: pointer;
  transition: opacity var(--duration-md) var(--ease-smooth);
  padding: 0;
}
.pg-video__play > i {
  position: relative;
  width: 88px; height: 88px;
  display: grid; place-items: center;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: var(--color-primary-dark);
  font-size: 1.5rem;
  z-index: 2;
  padding-left: 4px;
  box-shadow: var(--shadow-gold), 0 8px 40px -8px rgba(201,169,98,0.7);
}
.pg-video__play-ring {
  position: absolute;
  width: 88px; height: 88px;
  border-radius: var(--radius-full);
  z-index: 1;
}

/* ---------------- GALLERY 2.0 (masonry-ish 4-col) ---------------- */
.pg-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 170px;
  gap: var(--space-4);
}
.pg-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-3);
  cursor: zoom-in;
}
.pg-gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-smooth);
}
.pg-gallery__item:hover img { transform: scale(1.12); }
.pg-gallery__item--tall { grid-row: span 2; }
.pg-gallery__item--wide { grid-column: span 2; }
.pg-gallery__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,30,63,0) 40%, rgba(11,30,63,0.9) 100%);
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: var(--space-5);
  opacity: 0;
  transition: opacity var(--duration-md) var(--ease-smooth);
  color: var(--color-white);
}
.pg-gallery__item:hover .pg-gallery__overlay { opacity: 1; }
.pg-gallery__tag {
  font-family: var(--font-display);
  font-size: var(--text-scale-2);
  font-weight: 600;
  color: var(--color-white);
}
.pg-gallery__view {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: rgba(201,169,98,0.95);
  color: var(--color-primary-dark);
  font-size: var(--text-scale--1);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---------------- TESTIMONIALS 2.0 (dark) ---------------- */
.pg-testimonials { position: relative; overflow: hidden; }
.pg-testimonials::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, rgba(201,169,98,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.pg-testimonials__mark {
  position: absolute;
  left: 6%; top: 18%;
  font-size: clamp(140px, 18vw, 260px);
  font-family: var(--font-display);
  color: rgba(201,169,98,0.07);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}
.pg-testimonials__mark i { display: block; }
.pg-testimonials__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: var(--space-6);
  align-items: start;
}
.pg-testimonial {
  padding: var(--space-7);
  border-radius: var(--radius-lg);
  background: rgba(253,251,247,0.04);
  border: 1px solid rgba(246,243,237,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--duration-md) var(--ease-spring);
  position: relative;
}
.pg-testimonial:hover {
  transform: translateY(-4px);
  border-color: rgba(201,169,98,0.35);
  background: rgba(253,251,247,0.06);
}
.pg-testimonial--feature {
  transform: translateY(-16px);
  background: linear-gradient(160deg, rgba(201,169,98,0.18) 0%, rgba(253,251,247,0.04) 55%);
  border-color: rgba(201,169,98,0.45);
  box-shadow: 0 30px 70px -30px rgba(201,169,98,0.45);
}
.pg-testimonial--feature:hover {
  transform: translateY(-22px);
}
.pg-testimonial__badge {
  position: absolute;
  top: 14px; right: 14px;
  display: inline-flex;
  align-items: center; gap: 4px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: var(--color-primary-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: var(--shadow-gold);
}
.pg-testimonial__rating {
  display: flex; gap: 2px;
  color: var(--color-gold);
  font-size: 0.92rem;
  margin-bottom: var(--space-5);
}
.pg-testimonial__quote {
  font-family: var(--font-display);
  font-size: var(--text-scale-2);
  font-weight: 500;
  line-height: 1.65;
  color: rgba(246,243,237,0.94);
  margin: 0 0 var(--space-6);
}
.pg-testimonial--feature .pg-testimonial__quote {
  font-size: var(--text-scale-3);
  font-weight: 500;
}
.pg-testimonial__author {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--space-3);
  align-items: center;
  padding-top: var(--space-5);
  border-top: 1px solid rgba(246,243,237,0.08);
}
.pg-testimonial__avatar {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: var(--color-primary-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 0 0 3px rgba(201,169,98,0.25);
}
.pg-testimonial__author strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-scale-2);
  font-weight: 700;
  color: var(--color-white);
}
.pg-testimonial__author span {
  display: block;
  font-size: var(--text-scale--1);
  color: rgba(246,243,237,0.62);
  margin-top: 1px;
}

/* ---------------- SPLIT-SCREEN CTA ---------------- */
.pg-cta {
  padding-block: clamp(64px, 9vw, 110px);
  position: relative;
  background:
    radial-gradient(ellipse at 15% 30%, rgba(201,169,98,0.15) 0%, transparent 50%),
    linear-gradient(135deg, var(--color-primary-dark) 0%, #051026 100%);
  overflow: hidden;
}
.pg-cta::before, .pg-cta::after {
  content: '';
  position: absolute;
  border-radius: var(--radius-full);
  pointer-events: none;
}
.pg-cta::before {
  width: 560px; height: 560px;
  top: -280px; right: -180px;
  background: radial-gradient(circle, rgba(201,169,98,0.2) 0%, transparent 65%);
}
.pg-cta::after {
  width: 420px; height: 420px;
  bottom: -220px; left: -120px;
  background: radial-gradient(circle, rgba(42,67,120,0.55) 0%, transparent 65%);
}
.pg-cta__card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: clamp(32px, 5vw, 64px);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(253,251,247,0.06), rgba(201,169,98,0.05));
  border: 1px solid rgba(246,243,237,0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 40px 100px -30px rgba(0,0,0,0.5);
}
.pg-cta__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw + 0.5rem, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-white);
  margin: var(--space-3) 0 var(--space-4);
  letter-spacing: -0.02em;
}
.pg-cta__copy h2 em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pg-cta__copy p {
  color: rgba(246,243,237,0.82);
  font-size: var(--text-scale-2);
  line-height: var(--line-relaxed);
  margin: 0;
  max-width: 52ch;
}
.pg-cta__actions {
  display: flex; flex-direction: column; gap: var(--space-3);
  justify-self: end;
  width: 100%;
  max-width: 280px;
}

/* ---------------- RESPONSIVE BREAKPOINTS for .pg-* sections ---------------- */
@media (max-width: 1080px) {
  .pg-hero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-10);
    padding-top: 130px;
  }
  .pg-hero__booking { margin: 0 auto; }
  .pg-about__grid { grid-template-columns: 1fr; }
  .pg-collage { max-width: 480px; aspect-ratio: 4 / 4.2; }
  .pg-apartments__grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .pg-amenities__grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .pg-gallery__grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 160px; }
  .pg-gallery__item--wide { grid-column: span 2; }
  .pg-testimonials__grid { grid-template-columns: 1fr; }
  .pg-testimonial--feature { transform: none; }
  .pg-cta__card { grid-template-columns: 1fr; }
  .pg-cta__actions { justify-self: start; max-width: 100%; }
}
@media (max-width: 720px) {
  .pg-hero__inner { padding-top: 110px; }
  .pg-hero__stats { grid-template-columns: repeat(3, 1fr); max-width: 100%; }
  .pg-apartments__grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .pg-amenities__grid { grid-template-columns: 1fr; }
  .pg-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
    gap: var(--space-3);
  }
  .pg-gallery__item--tall { grid-row: span 2; }
  .pg-gallery__item--wide { grid-column: span 2; grid-row: span 1; }
  .pg-collage { aspect-ratio: 4 / 4.5; }
  .pg-collage__frame--a { width: 66%; height: 58%; }
  .pg-collage__frame--b { width: 54%; height: 50%; }
  .pg-collage__frame--c { width: 60%; height: 42%; left: 10%; }
  .pg-collage__stamp { width: 76px; height: 76px; }
  .pg-collage__stamp strong { font-size: 1.1rem; }
  .pg-testimonial--feature { padding: var(--space-6); }
  .pg-testimonials__mark { opacity: 0.5; }
  .pg-hero__controls { bottom: 88px; }
  .pg-hero__scroll { display: none; }
  .pg-cta__card { padding: var(--space-6) var(--space-5); }
}
@media (max-width: 480px) {
  .pg-gallery__grid { grid-template-columns: 1fr 1fr; }
  .pg-gallery__item--wide { grid-column: span 2; }
  .pg-gallery__item--tall { grid-row: span 2; }
  .pg-hero__booking { padding: var(--space-6); }
  .pg-hero__actions .btn { flex: 1 1 auto; justify-content: center; }
}

/* ==========================================================
   INTERIOR PAGE STYLES — CONSOLIDATED FROM TEMPLATE INLINE BLOCKS
   (banner deduped; unique about/apartments/contact/booking/auth/payment/profile/thanks styles)
   ========================================================== */

/* ============================================
   FROM: about.html
   ============================================ */
/* ==========================================================
           INTERIOR PAGE BANNER — Ken Burns + Breadcrumb
           ========================================================== */
.pg-pagebanner {
            position: relative;
            min-height: 62svh;
            display: grid;
            place-items: end center;
            overflow: hidden;
            isolation: isolate;
            color: var(--color-white);
        }
        .pg-pagebanner__bg {
            position: absolute; inset: 0;
            background-size: cover;
            background-position: center;
            transform-origin: 70% 30%;
            animation-duration: 26s;
            z-index: -2;
        }
        .pg-pagebanner__scrim {
            position: absolute; inset: 0;
            background:
                linear-gradient(180deg, rgba(5,16,38,0.45) 0%, rgba(5,16,38,0.55) 50%, rgba(5,16,38,0.88) 100%),
                radial-gradient(ellipse at 40% 20%, rgba(201,169,98,0.18) 0%, transparent 60%);
            z-index: -1;
        }
        .pg-pagebanner__inner {
            width: 100%;
            padding-block: clamp(140px) clamp(60px, 10svh, 100px);
            text-align: center;
        }
        .pg-breadcrumb {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 18px;
            border-radius: var(--radius-pill);
            background: rgba(253,251,247,0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(246,243,237,0.14);
            font-size: var(--text-scale-0);
            letter-spacing: 0.08em;
            text-transform: uppercase;
            font-weight: 500;
            margin-bottom: var(--space-5);
        }
        .pg-breadcrumb a { color: rgba(246,243,237,0.72); transition: color var(--duration-sm); }
        .pg-breadcrumb a:hover { color: var(--color-gold-light); }
        .pg-breadcrumb__sep { color: var(--color-gold); opacity: 0.6; }
        .pg-breadcrumb__current { color: var(--color-gold-light); font-weight: 600; }
        .pg-pagebanner__eyebrow {
            display: block;
            font-size: var(--text-scale-0);
            letter-spacing: 0.32em;
            text-transform: uppercase;
            color: var(--color-gold-light);
            font-weight: 600;
            margin-bottom: var(--space-4);
        }
        .pg-pagebanner__title {
            font-family: var(--font-display);
            font-size: clamp(2.4rem, 4.2vw + 0.5rem, 4rem);
            font-weight: 700;
            line-height: 1.05;
            letter-spacing: -0.02em;
            margin: 0 0 var(--space-4);
            color: var(--color-white);
        }
        .pg-pagebanner__title em {
            font-style: italic;
            font-weight: 500;
            background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .pg-pagebanner__sub {
            max-width: 620px;
            margin: 0 auto;
            font-size: var(--text-scale-3);
            line-height: var(--line-relaxed);
            color: rgba(246,243,237,0.85);
        }
/* ==========================================================
           ABOUT — Story split
           ========================================================== */
.pg-aboutpage__story {
            padding-block: var(--space-section-y);
        }
        .pg-storygrid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(32px, 6vw, 80px);
            align-items: center;
        }
        .pg-storygrid__visual {
            position: relative;
        }
        .pg-storygrid__frame {
            position: relative;
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-hero), 0 0 0 4px rgba(201,169,98,0.18);
            aspect-ratio: 4 / 5;
        }
        .pg-storygrid__frame img {
            width: 100%; height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 1s var(--ease-smooth);
        }
        .pg-storygrid__visual:hover .pg-storygrid__frame img { transform: scale(1.04); }
        .pg-storygrid__accent {
            position: absolute;
            bottom: -24px; left: -24px;
            width: 140px; height: 140px;
            border-radius: var(--radius-xl);
            background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
            z-index: -1;
            opacity: 0.5;
        }
        .pg-storygrid__accent--2 {
            top: -20px; right: -20px;
            bottom: auto; left: auto;
            background: linear-gradient(135deg, var(--color-primary-soft), var(--color-primary-dark));
            opacity: 0.15;
        }
        .pg-storygrid__stamp {
            position: absolute;
            top: 24px; right: 24px;
            padding: 14px 20px;
            border-radius: var(--radius-lg);
            background: rgba(253,251,247,0.95);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-4);
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .pg-storygrid__stamp i {
            width: 40px; height: 40px;
            display: grid; place-items: center;
            border-radius: var(--radius-md);
            background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
            color: var(--color-primary-dark);
        }
        .pg-storygrid__stamp strong {
            display: block;
            font-family: var(--font-display);
            font-size: var(--text-scale-4);
            font-weight: 700;
            color: var(--color-primary-dark);
            line-height: 1;
        }
        .pg-storygrid__stamp span {
            font-size: var(--text-scale--1);
            color: var(--color-ink-soft);
            letter-spacing: 0.08em;
            text-transform: uppercase;
            font-weight: 500;
        }
        .pg-copy__lead {
            font-family: var(--font-display);
            font-style: italic;
            font-size: var(--text-scale-4);
            font-weight: 500;
            color: var(--color-primary-dark);
            line-height: 1.4;
            margin: 0 0 var(--space-6);
            padding-bottom: var(--space-6);
            border-bottom: 1px solid rgba(201,169,98,0.25);
        }
        .pg-copy__body p {
            margin-bottom: var(--space-4);
            font-size: var(--text-scale-2);
            line-height: var(--line-relaxed);
            color: var(--color-ink-soft);
        }
/* ==========================================================
           Mission + Vision
           ========================================================== */
.pg-mvsection {
            padding-block: var(--space-section-y);
            background-color: var(--color-bg-cream);
        }
        .pg-mvgrid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-8);
            margin-top: var(--space-12);
        }
        .pg-mvcard {
            padding: var(--space-10);
            border-radius: var(--radius-xl);
            background: var(--color-white);
            border: 1px solid rgba(26,46,85,0.06);
            box-shadow: var(--shadow-3);
            transition: all var(--duration-md) var(--ease-spring);
            position: relative;
            overflow: hidden;
        }
        .pg-mvcard::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-light));
        }
        .pg-mvcard:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-6);
        }
        .pg-mvcard__icon {
            width: 72px; height: 72px;
            display: grid; place-items: center;
            border-radius: var(--radius-xl);
            background: linear-gradient(135deg, rgba(201,169,98,0.12), rgba(201,169,98,0.04));
            color: var(--color-gold-dark);
            font-size: 1.75rem;
            margin-bottom: var(--space-6);
            border: 1px solid rgba(201,169,98,0.2);
        }
        .pg-mvcard__title {
            font-family: var(--font-display);
            font-size: var(--text-scale-5);
            font-weight: 700;
            color: var(--color-primary-dark);
            margin: 0 0 var(--space-4);
        }
        .pg-mvcard p {
            margin-bottom: var(--space-3);
            color: var(--color-ink-soft);
            line-height: var(--line-relaxed);
        }
        .pg-mvcard p:last-child { margin-bottom: 0; }
/* ==========================================================
           Core Values grid
           ========================================================== */
.pg-values {
            padding-block: var(--space-section-y);
        }
        .pg-values__grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: var(--space-6);
            margin-top: var(--space-12);
        }
        .pg-valuecard {
            padding: var(--space-8) var(--space-6);
            border-radius: var(--radius-lg);
            background: var(--color-bg-cream);
            border: 1px solid rgba(26,46,85,0.06);
            text-align: center;
            transition: all var(--duration-md) var(--ease-spring);
            position: relative;
        }
        .pg-valuecard::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: var(--radius-lg);
            padding: 1px;
            background: linear-gradient(135deg, var(--color-gold), transparent 50%);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity var(--duration-md);
        }
        .pg-valuecard:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-5);
            background: var(--color-white);
        }
        .pg-valuecard:hover::after { opacity: 1; }
        .pg-valuecard__icon {
            width: 64px; height: 64px;
            display: grid; place-items: center;
            border-radius: var(--radius-xl);
            background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary-soft));
            color: var(--color-gold-light);
            font-size: 1.5rem;
            margin: 0 auto var(--space-5);
            box-shadow: var(--shadow-3);
            transition: transform var(--duration-md) var(--ease-spring);
        }
        .pg-valuecard:hover .pg-valuecard__icon {
            transform: rotate(-6deg) scale(1.08);
            background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
            color: var(--color-primary-dark);
        }
        .pg-valuecard__title {
            font-family: var(--font-display);
            font-size: var(--text-scale-3);
            font-weight: 700;
            color: var(--color-primary-dark);
            margin: 0 0 var(--space-3);
        }
        .pg-valuecard p {
            color: var(--color-ink-soft);
            line-height: var(--line-relaxed);
            margin: 0;
        }
/* ==========================================================
           Team grid
           ========================================================== */
.pg-team {
            padding-block: var(--space-section-y);
            background-color: var(--color-bg-cream);
        }
        .pg-team__grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: var(--space-6);
            margin-top: var(--space-12);
        }
        .pg-teamcard {
            border-radius: var(--radius-xl);
            overflow: hidden;
            background: var(--color-white);
            box-shadow: var(--shadow-2);
            border: 1px solid rgba(26,46,85,0.05);
            transition: all var(--duration-md) var(--ease-spring);
        }
        .pg-teamcard:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-6);
        }
        .pg-teamcard__photo {
            position: relative;
            aspect-ratio: 4 / 5;
            overflow: hidden;
        }
        .pg-teamcard__photo img {
            width: 100%; height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.9s var(--ease-smooth);
        }
        .pg-teamcard:hover .pg-teamcard__photo img { transform: scale(1.08); }
        .pg-teamcard__overlay {
            position: absolute; inset: 0;
            background: linear-gradient(180deg, transparent 50%, rgba(11,30,63,0.75) 100%);
            opacity: 0;
            transition: opacity var(--duration-md);
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding: var(--space-6);
            gap: var(--space-3);
        }
        .pg-teamcard:hover .pg-teamcard__overlay { opacity: 1; }
        .pg-teamcard__social {
            width: 38px; height: 38px;
            display: grid; place-items: center;
            border-radius: var(--radius-full);
            background: rgba(253,251,247,0.15);
            color: var(--color-white);
            backdrop-filter: blur(6px);
            border: 1px solid rgba(246,243,237,0.2);
            transition: all var(--duration-sm);
        }
        .pg-teamcard__social:hover {
            background: var(--color-gold);
            color: var(--color-primary-dark);
            transform: translateY(-3px);
        }
        .pg-teamcard__body {
            padding: var(--space-6) var(--space-5) var(--space-6);
            text-align: center;
        }
        .pg-teamcard__name {
            font-family: var(--font-display);
            font-size: var(--text-scale-3);
            font-weight: 700;
            color: var(--color-primary-dark);
            margin: 0 0 var(--space-2);
        }
        .pg-teamcard__role {
            font-size: var(--text-scale-0);
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--color-gold-dark);
            font-weight: 600;
            margin: 0;
        }
/* ==========================================================
           Stats counter (parallax-ish image bg)
           ========================================================== */

/* ============================================
   FROM: apartments.html
   ============================================ */
/* ==========================================================
           INTERIOR PAGE BANNER — Ken Burns + Breadcrumb
           ========================================================== */
/* ==========================================================
           FILTER SECTION — float-label gl-field
           ========================================================== */
.pg-filterbar {
            margin-top: -56px;
            position: relative;
            z-index: 20;
        }
        .pg-filterbar__card {
            background: var(--color-white);
            border-radius: var(--radius-xl);
            padding: var(--space-8);
            box-shadow: var(--shadow-hero), 0 0 0 1px rgba(201,169,98,0.18);
        }
        .pg-filterbar__head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: var(--space-6);
            gap: var(--space-4);
            flex-wrap: wrap;
        }
        .pg-filterbar__title {
            display: flex;
            align-items: center;
            gap: var(--space-3);
            margin: 0;
        }
        .pg-filterbar__title i {
            width: 40px; height: 40px;
            display: grid; place-items: center;
            border-radius: var(--radius-md);
            background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
            color: var(--color-primary-dark);
            font-size: 0.95rem;
        }
        .pg-filterbar__title span {
            font-family: var(--font-display);
            font-size: var(--text-scale-4);
            font-weight: 700;
            color: var(--color-primary-dark);
        }
        .pg-filterbar__count {
            font-size: var(--text-scale-0);
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--color-gold-dark);
            font-weight: 600;
            padding: 6px 14px;
            background: rgba(201,169,98,0.12);
            border-radius: var(--radius-pill);
        }
        .pg-filterbar__form {
            display: grid;
            grid-template-columns: 1fr 1fr auto;
            gap: var(--space-5);
            align-items: end;
        }
        .pg-filterbar__form .gl-field {
            margin-bottom: 0;
        }
        .pg-filterbar__submit {
            padding: 0 var(--space-8);
            height: 56px;
            white-space: nowrap;
        }
/* ==========================================================
           APARTMENTS LISTING SECTION
           ========================================================== */
.pg-aptlisting {
            padding-block: var(--space-section-y);
        }
        .pg-aptlisting__head {
            display: flex;
            align-items: end;
            justify-content: space-between;
            margin-bottom: var(--space-10);
            gap: var(--space-6);
            flex-wrap: wrap;
        }
        .pg-aptlisting__head-left { max-width: 620px; }
        .pg-aptlisting__grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: var(--space-7);
        }
/* ==========================================================
           APARTMENT CARD — enhanced from index
           ========================================================== */
.apartment-card {
            background: var(--color-white);
            border-radius: var(--radius-xl);
            overflow: hidden;
            border: 1px solid rgba(26,46,85,0.06);
            box-shadow: var(--shadow-2);
            transition: all var(--duration-md) var(--ease-spring);
            display: flex;
            flex-direction: column;
        }
        .apartment-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-6);
            border-color: rgba(201,169,98,0.25);
        }
        .apartment-card__image {
            position: relative;
            overflow: hidden;
            aspect-ratio: 4 / 3;
        }
        .apartment-card__image img {
            width: 100%; height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.9s var(--ease-smooth);
        }
        .apartment-card:hover .apartment-card__image img { transform: scale(1.08); }
        .apartment-tag {
            position: absolute;
            top: 14px; right: 14px;
            padding: 6px 14px;
            border-radius: var(--radius-pill);
            background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
            color: var(--color-primary-dark);
            font-size: 0.7rem;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            box-shadow: var(--shadow-gold);
            z-index: 2;
        }
        .apartment-card__price {
            position: absolute;
            top: 14px; left: 14px;
            display: inline-flex;
            align-items: baseline;
            gap: 3px;
            padding: 8px 14px;
            border-radius: var(--radius-pill);
            background: rgba(11,30,63,0.82);
            color: var(--color-white);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            font-weight: 700;
            box-shadow: 0 4px 18px -6px rgba(0,0,0,0.3);
            z-index: 2;
        }
        .apartment-card__price .currency {
            font-size: 0.75rem;
            color: var(--color-gold-light);
            font-weight: 600;
            align-self: center;
        }
        .apartment-card__price .amount {
            font-family: var(--font-display);
            font-size: 1.1rem;
            letter-spacing: -0.01em;
        }
        .apartment-card__price .per {
            font-size: 0.7rem;
            font-weight: 500;
            color: rgba(246,243,237,0.7);
        }
        .apartment-card__body {
            padding: var(--space-6);
            display: flex;
            flex-direction: column;
            flex: 1;
        }
        .apartment-card__title {
            font-family: var(--font-display);
            font-size: var(--text-scale-4);
            font-weight: 700;
            color: var(--color-primary-dark);
            margin: 0 0 var(--space-3);
            line-height: 1.2;
        }
        .apartment-card__meta {
            display: flex; flex-wrap: wrap; gap: var(--space-3) var(--space-4);
            padding-bottom: var(--space-4);
            margin-bottom: var(--space-4);
            border-bottom: 1px solid rgba(26,46,85,0.08);
            color: var(--color-ink-soft);
            font-size: var(--text-scale-0);
            font-weight: 500;
        }
        .apartment-card__meta i { color: var(--color-gold); margin-right: 4px; }
        .apartment-card__desc {
            color: var(--color-ink-soft);
            line-height: var(--line-relaxed);
            margin: 0 0 var(--space-5);
            font-size: var(--text-scale-1);
            flex: 1;
        }
        .apartment-card__price-row {
            margin-bottom: var(--space-5);
        }
        .apartment-card__foot {
            display: flex;
            gap: var(--space-3);
            align-items: center;
            flex-wrap: wrap;
        }
/* ==========================================================
           PAGINATION
           ========================================================== */

/* ============================================
   FROM: contact.html
   ============================================ */
/* ==========================================================
           INTERIOR PAGE BANNER — Ken Burns + Breadcrumb
           ========================================================== */
/* ==========================================================
           CONTACT + FAQ 2-COLUMN SPLIT
           ========================================================== */
.pg-contactus {
            padding-block: var(--space-section-y);
        }
        .pg-contactus__split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(32px, 6vw, 72px);
        }

        /* ---------- Contact Info column (4 items) ---------- */
        .pg-contactinfo__head {
            margin-bottom: var(--space-10);
        }
        .pg-contactinfo__grid {
            display: grid;
            gap: var(--space-5);
            margin-bottom: var(--space-10);
        }
        .pg-contactitem {
            display: grid;
            grid-template-columns: 60px 1fr;
            gap: var(--space-5);
            padding: var(--space-6);
            border-radius: var(--radius-lg);
            background: var(--color-bg-cream);
            border: 1px solid rgba(26,46,85,0.06);
            transition: all var(--duration-md) var(--ease-spring);
        }
        .pg-contactitem:hover {
            transform: translateX(4px);
            background: var(--color-white);
            border-color: rgba(201,169,98,0.3);
            box-shadow: var(--shadow-3);
        }
        .pg-contactitem__icon {
            width: 60px; height: 60px;
            display: grid; place-items: center;
            border-radius: var(--radius-lg);
            background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary-soft));
            color: var(--color-gold-light);
            font-size: 1.25rem;
            flex-shrink: 0;
            box-shadow: var(--shadow-2);
            transition: all var(--duration-md) var(--ease-spring);
        }
        .pg-contactitem:hover .pg-contactitem__icon {
            background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
            color: var(--color-primary-dark);
            transform: rotate(-6deg) scale(1.06);
        }
        .pg-contactitem__label {
            font-size: var(--text-scale-0);
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--color-gold-dark);
            font-weight: 700;
            margin-bottom: var(--space-1);
            display: block;
        }
        .pg-contactitem__value {
            font-family: var(--font-display);
            font-size: var(--text-scale-3);
            font-weight: 600;
            color: var(--color-primary-dark);
            line-height: 1.35;
            margin: 0;
        }
        .pg-contactitem__value a { color: inherit; transition: color var(--duration-sm); }
        .pg-contactitem__value a:hover { color: var(--color-gold-dark); }

        .pg-contactsocials {
            display: flex;
            gap: var(--space-3);
            margin-top: var(--space-6);
            padding-top: var(--space-6);
            border-top: 1px solid rgba(26,46,85,0.08);
        }
        .pg-contactsocial {
            width: 46px; height: 46px;
            display: grid; place-items: center;
            border-radius: var(--radius-md);
            background: var(--color-bg-cream);
            color: var(--color-primary-soft);
            border: 1px solid rgba(26,46,85,0.06);
            transition: all var(--duration-sm) var(--ease-smooth);
        }
        .pg-contactsocial:hover {
            transform: translateY(-4px);
            background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
            color: var(--color-primary-dark);
            border-color: transparent;
            box-shadow: var(--shadow-gold);
        }

        /* ---------- FAQ Accordion column (5 items) ---------- */
        .pg-faq__head {
            margin-bottom: var(--space-10);
        }
        .pg-faq__list {
            display: grid;
            gap: var(--space-3);
        }
        .pg-faqitem {
            border-radius: var(--radius-lg);
            background: var(--color-white);
            border: 1px solid rgba(26,46,85,0.08);
            overflow: hidden;
            transition: all var(--duration-md) var(--ease-smooth);
        }
        .pg-faqitem:hover {
            border-color: rgba(201,169,98,0.28);
            box-shadow: var(--shadow-2);
        }
        .pg-faqitem.active {
            border-color: rgba(201,169,98,0.45);
            box-shadow: var(--shadow-4);
        }
        .pg-faqitem__q {
            width: 100%;
            text-align: left;
            padding: var(--space-6) var(--space-7);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: var(--space-4);
            font-family: var(--font-display);
            font-size: var(--text-scale-3);
            font-weight: 600;
            color: var(--color-primary-dark);
            background: transparent;
            border: none;
            cursor: pointer;
            transition: all var(--duration-sm);
        }
        .pg-faqitem.active .pg-faqitem__q,
        .pg-faqitem__q:hover {
            background: rgba(201,169,98,0.06);
        }
        .pg-faqitem__chev {
            width: 32px; height: 32px;
            display: grid; place-items: center;
            border-radius: var(--radius-full);
            background: rgba(201,169,98,0.1);
            color: var(--color-gold-dark);
            flex-shrink: 0;
            transition: transform var(--duration-md) var(--ease-smooth), background var(--duration-sm);
            font-size: 0.75rem;
        }
        .pg-faqitem.active .pg-faqitem__chev {
            transform: rotate(180deg);
            background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
            color: var(--color-primary-dark);
        }
        .pg-faqitem__a {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--duration-lg) var(--ease-smooth), padding var(--duration-md) var(--ease-smooth);
        }
        .pg-faqitem.active .pg-faqitem__a {
            padding: 0 var(--space-7) var(--space-6);
            max-height: 500px;
        }
        .pg-faqitem__a p {
            padding-top: var(--space-2);
            border-top: 1px solid rgba(26,46,85,0.06);
            margin: 0;
            color: var(--color-ink-soft);
            line-height: var(--line-relaxed);
            font-size: var(--text-scale-2);
        }
/* ==========================================================
           CONTACT FORM SECTION (full width card)
           ========================================================== */
.pg-contactform {
            padding-block: 0 var(--space-section-y);
        }
        .pg-contactform__card {
            display: grid;
            grid-template-columns: 1.05fr 1fr;
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-hero), 0 0 0 1px rgba(201,169,98,0.18);
            background: var(--color-white);
        }
        .pg-contactform__visual {
            position: relative;
            min-height: 100%;
            background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary-soft) 100%);
            padding: var(--space-12) var(--space-10);
            color: var(--color-white);
            overflow: hidden;
            isolation: isolate;
        }
        .pg-contactform__visual::before {
            content: '';
            position: absolute;
            top: -120px; right: -120px;
            width: 360px; height: 360px;
            border-radius: var(--radius-full);
            background: radial-gradient(circle, rgba(201,169,98,0.25) 0%, transparent 65%);
            z-index: -1;
        }
        .pg-contactform__visual::after {
            content: '';
            position: absolute;
            bottom: -80px; left: -80px;
            width: 260px; height: 260px;
            border-radius: var(--radius-full);
            background: radial-gradient(circle, rgba(42,67,120,0.6) 0%, transparent 65%);
            z-index: -1;
        }
        .pg-contactform__eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 14px;
            border-radius: var(--radius-pill);
            background: rgba(253,251,247,0.08);
            border: 1px solid rgba(246,243,237,0.15);
            color: var(--color-gold-light);
            font-size: var(--text-scale-0);
            letter-spacing: 0.12em;
            text-transform: uppercase;
            font-weight: 600;
            margin-bottom: var(--space-5);
        }
        .pg-contactform__title {
            font-family: var(--font-display);
            font-size: clamp(1.8rem, 2.5vw + 0.5rem, 2.6rem);
            font-weight: 700;
            line-height: 1.15;
            margin: 0 0 var(--space-5);
            color: var(--color-white);
            letter-spacing: -0.01em;
        }
        .pg-contactform__title em {
            font-style: italic;
            font-weight: 500;
            background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .pg-contactform__desc {
            color: rgba(246,243,237,0.82);
            line-height: var(--line-relaxed);
            font-size: var(--text-scale-2);
            margin: 0 0 var(--space-10);
            max-width: 38ch;
        }
        .pg-contactform__mini {
            display: grid;
            gap: var(--space-5);
        }
        .pg-contactmini {
            display: flex;
            align-items: center;
            gap: var(--space-4);
        }
        .pg-contactmini__icon {
            width: 44px; height: 44px;
            display: grid; place-items: center;
            border-radius: var(--radius-md);
            background: rgba(201,169,98,0.15);
            color: var(--color-gold-light);
            flex-shrink: 0;
        }
        .pg-contactmini__label {
            font-size: 0.72rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: rgba(246,243,237,0.6);
            font-weight: 600;
            display: block;
            margin-bottom: 2px;
        }
        .pg-contactmini__value {
            font-family: var(--font-display);
            font-weight: 600;
            color: var(--color-white);
            font-size: var(--text-scale-2);
            margin: 0;
        }

        .pg-contactform__body {
            padding: var(--space-12) var(--space-10);
        }
        .pg-contactform__body h3 {
            font-family: var(--font-display);
            font-size: var(--text-scale-5);
            font-weight: 700;
            color: var(--color-primary-dark);
            margin: 0 0 var(--space-8);
        }
        .pg-formrow {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-5);
        }
/* ==========================================================
           MAP SECTION
           ========================================================== */

/* ============================================
   FROM: booking.html
   ============================================ */
/* Django Messages */
        .messages {
            list-style: none;
            padding: 0;
            margin: 0 0 var(--space-6) 0;
        }
        .messages li {
            padding: 14px 18px;
            margin-bottom: 10px;
            border-radius: var(--radius-md);
            font-size: var(--text-scale-2);
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: var(--shadow-2);
        }
        .messages li::before {
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
        }
        .messages .success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        .messages .success::before {
            content: "\f00c";
            color: #28a745;
        }
        .messages .error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        .messages .error::before {
            content: "\f071";
            color: #dc3545;
        }
        #availability-message { display: none; }
/* ==========================================================
           INTERIOR BANNER — Ken Burns + Breadcrumb
           ========================================================== */
/* ==========================================================
           3-STEP BOOKING TIMELINE
           ========================================================== */
.pg-bookflow {
            padding-block: var(--space-section-y) var(--space-10);
        }
        .pg-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-6);
            position: relative;
        }
        .pg-steps::before {
            content: '';
            position: absolute;
            top: 34px;
            left: 16%;
            right: 16%;
            height: 2px;
            background: linear-gradient(90deg, var(--color-gold), rgba(201,169,98,0.2), rgba(201,169,98,0.08));
            z-index: 0;
        }
        .pg-step {
            text-align: center;
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .pg-step__num {
            width: 68px; height: 68px;
            border-radius: var(--radius-full);
            display: grid; place-items: center;
            background: var(--color-white);
            border: 2px solid rgba(201,169,98,0.35);
            color: var(--color-gold-dark);
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: var(--space-4);
            box-shadow: var(--shadow-3), 0 0 0 6px rgba(201,169,98,0.08);
            position: relative;
        }
        .pg-step.is-active .pg-step__num {
            background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
            color: var(--color-primary-dark);
            border-color: var(--color-gold);
            transform: scale(1.05);
        }
        .pg-step__num i { font-size: 1.15rem; }
        .pg-step__label {
            font-family: var(--font-display);
            font-size: var(--text-scale-3);
            font-weight: 700;
            color: var(--color-primary-dark);
            margin: 0 0 2px;
        }
        .pg-step__desc {
            color: var(--color-ink-soft);
            font-size: var(--text-scale-1);
            margin: 0;
        }
/* ==========================================================
           BOOKING GRID: form + sticky summary
           ========================================================== */
/* ============================================
   SHARED pg-banner (compact variant for payment/thanks pages)
   ============================================ */
.pg-banner {
    position: relative;
    min-height: 46svh;
    display: grid;
    place-items: end center;
    overflow: hidden;
    isolation: isolate;
    color: var(--color-white);
}
.pg-banner--compact { min-height: 36svh; }
.pg-banner__bg { position: absolute; inset: 0; z-index: -2; }
.pg-banner__bg-img {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    transform-origin: 50% 40%;
    z-index: -2;
}
.pg-banner__scrim {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(5,16,38,0.52) 0%, rgba(5,16,38,0.62) 45%, rgba(5,16,38,0.92) 100%),
        radial-gradient(ellipse at 45% 25%, rgba(201,169,98,0.16) 0%, transparent 60%);
    z-index: -1;
}
.pg-banner__inner {
    width: 100%;
    padding-block: clamp(120px, 18svh, 180px) clamp(56px, 9svh, 96px);
    text-align: center;
}
.pg-banner__copy { max-width: 760px; margin: 0 auto; }
.pg-banner__eyebrow {
    display: block;
    font-size: var(--text-scale-0);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold-light);
    font-weight: 600;
    margin-bottom: var(--space-4);
}
.pg-banner__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.6vw + 0.5rem, 3.4rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 0 0 var(--space-4);
    color: var(--color-white);
}
.pg-banner__title em {
    font-style: italic; font-weight: 500;
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pg-banner__sub {
    max-width: 600px; margin: 0 auto;
    font-size: var(--text-scale-3); line-height: var(--line-relaxed);
    color: rgba(246,243,237,0.82);
}
.pg-banner__actions {
    display: flex; justify-content: center; flex-wrap: wrap;
    gap: var(--space-4); margin-top: var(--space-7);
}

/* ============================================
   INTERIOR RESPONSIVE — 1080px (laptop)
   ============================================ */
@media (max-width: 1080px) {
    .pg-storygrid, .pg-mvgrid, .pg-contactus__split,
    .pg-bookgrid__cols, .pg-payment__grid, .pg-profile__grid {
        grid-template-columns: 1fr;
    }
    .pg-team__grid { grid-template-columns: repeat(2, 1fr); }
    .pg-steps { grid-template-columns: 1fr; }
    .pg-steps::before { display: none; }
    .pg-aptlisting__grid { grid-template-columns: repeat(2, 1fr); }
    .pg-filterbar__form { grid-template-columns: 1fr 1fr; }
    .pg-pagination { flex-wrap: wrap; }
    .pg-auth__split { grid-template-columns: 1fr; }
    .pg-auth__hero { display: none; }
    .pg-thanks__grid { grid-template-columns: 1fr; }
    .pg-thanks__card--apt { order: -1; }
    .pg-values__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   INTERIOR RESPONSIVE — 720px (tablet)
   ============================================ */
@media (max-width: 720px) {
    .pg-pagebanner { min-height: 60svh; }
    .pg-pagebanner__inner { padding-block: 110px 64px; }
    .pg-pagebanner__title { font-size: clamp(1.8rem, 7vw, 2.6rem); }
    .pg-team__grid { grid-template-columns: 1fr 1fr; }
    .pg-aptlisting__grid { grid-template-columns: 1fr; }
    .pg-filterbar { margin-top: -40px; }
    .pg-filterbar__card { padding: var(--space-6); }
    .pg-filterbar__form { grid-template-columns: 1fr; }
    .pg-filterbar__submit { width: 100%; }
    .pg-storygrid__stamp {
        position: relative; top: auto; right: auto;
        margin-top: var(--space-4); justify-content: flex-start;
    }
    .pg-bookform { padding: var(--space-7) var(--space-5); }
    .pg-mvcard { padding: var(--space-7); }
    .pg-values__grid { grid-template-columns: 1fr; }
    .pg-team__grid { grid-template-columns: 1fr 1fr; }
    .pg-stat__num { font-size: var(--text-scale-6); }
    .pg-thanks__sparkle { display: none; }
    .pg-thanks__check { width: 140px; height: 140px; }
    .pg-thanks__glow { width: 200px; height: 200px; top: -30px; left: -30px; }
    .pg-payment__details { padding: var(--space-7) var(--space-5); }
    .pg-payment__trust { grid-template-columns: 1fr; }
    .pg-auth__form-wrap { padding: var(--space-6); }
    .pg-profile__head-actions { flex-direction: column; width: 100%; }
    .pg-profile__head-actions .btn { width: 100%; justify-content: center; }
}

/* ============================================
   INTERIOR RESPONSIVE — 480px (small mobile)
   ============================================ */
@media (max-width: 480px) {
    .pg-team__grid { grid-template-columns: 1fr; }
    .pg-storygrid__accent { display: none; }
    .pg-pagebanner__eyebrow { letter-spacing: 0.2em; }
    .pg-contactitem { grid-template-columns: 48px 1fr; gap: var(--space-4); padding: var(--space-5); }
    .pg-contactitem__icon { width: 48px; height: 48px; }
    .pg-step__num { width: 56px; height: 56px; font-size: 1.2rem; }
    .pg-booksum { padding: var(--space-6); }
    .pg-thanks__check { width: 120px; height: 120px; }
    .pg-thanks__title { font-size: clamp(1.7rem, 7vw, 2.4rem); }
    .pg-payment__amount { font-size: clamp(2rem, 8vw, 2.8rem); }
    .pg-profile__avatar { width: 120px; height: 120px; }
    .pg-profile__avatar--ring { width: 128px; height: 128px; }
}



/* ==========================================================
   AUTH PAGES — Login + Register split layout
   ========================================================== */
.pg-auth {
    position: relative;
    min-height: 100svh;
    color: var(--color-white);
    isolation: isolate;
    overflow: hidden;
    background: var(--color-bg-paper);
}
.pg-auth__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100svh;
}

/* LEFT: Auth hero (Ken Burns + navy gold scrim) */
.pg-auth__hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-16);
    overflow: hidden;
    isolation: isolate;
}
.pg-auth__hero-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    transform-origin: 55% 35%;
    animation-duration: 28s;
    z-index: -2;
}
.pg-auth__hero-scrim {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(5,16,38,0.55) 0%, rgba(5,16,38,0.65) 45%, rgba(5,16,38,0.95) 100%),
        radial-gradient(ellipse at 40% 25%, rgba(201,169,98,0.16) 0%, transparent 60%);
    z-index: -1;
}
.pg-auth__hero-inner {
    position: relative;
    max-width: 540px;
    z-index: 1;
}
.pg-auth__hero-copy { position: relative; }
.pg-auth__hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 3.6vw + 0.5rem, 3.6rem);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -0.02em;
    margin: var(--space-5) 0 var(--space-4);
    color: var(--color-white);
}
.pg-auth__hero-title em {
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.pg-auth__hero-sub {
    font-size: var(--text-scale-3);
    line-height: var(--line-relaxed);
    color: rgba(246,243,237,0.78);
    margin: 0 0 var(--space-10);
    max-width: 48ch;
}
.pg-auth__hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-4);
    margin: 0 0 var(--space-10);
}
.pg-auth-hero-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-scale-6);
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: var(--space-1);
}
.pg-auth-hero-stat span {
    font-size: var(--text-scale--1);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(246,243,237,0.7);
    font-weight: 500;
}
.pg-auth__hero-quote {
    position: relative;
    padding: var(--space-6) var(--space-7);
    border-radius: var(--radius-lg);
    background: rgba(253,251,247,0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(246,243,237,0.12);
    border-left: 4px solid var(--color-gold);
    max-width: 480px;
}
.pg-auth__hero-quote i {
    color: var(--color-gold);
    font-size: 1.2rem;
    margin-bottom: var(--space-2);
    opacity: 0.9;
}
.pg-auth__hero-quote p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: var(--text-scale-3);
    line-height: 1.5;
    color: rgba(246,243,237,0.92);
    margin: 0 0 var(--space-2);
}
.pg-auth__hero-quote cite {
    font-size: var(--text-scale--1);
    font-style: normal;
    color: var(--color-gold-light);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
}

/* REGISTER ONLY: collage + benefits on left */
.pg-auth--register .pg-auth__hero { overflow: visible; }
.pg-auth__collage {
    position: absolute;
    top: 18%;
    right: -6%;
    width: 52%;
    aspect-ratio: 1 / 1.15;
    z-index: 3;
    pointer-events: none;
    transform: rotate(-5deg);
    filter: drop-shadow(0 25px 50px rgba(5,16,38,0.55));
}
.pg-auth__collage-img {
    position: absolute;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-5);
    border: 5px solid rgba(253,251,247,0.9);
}
.pg-auth__collage-img img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}
.pg-auth__collage-img--a {
    width: 76%; height: 62%;
    top: 2%; left: 4%;
    z-index: 3;
}
.pg-auth__collage-img--b {
    width: 62%; height: 58%;
    bottom: 6%; right: 2%;
    z-index: 2;
    border-color: rgba(201,169,98,0.7);
    transform: rotate(4deg);
}
.pg-auth__collage-img--c {
    width: 54%; height: 48%;
    top: 30%; left: 24%;
    z-index: 4;
    transform: rotate(9deg);
    border-color: rgba(26,46,85,0.7);
}
.pg-auth__benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: var(--space-3);
    position: relative;
    z-index: 2;
}
.pg-auth__benefits li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    background: rgba(253,251,247,0.06);
    backdrop-filter: blur(6px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(246,243,237,0.1);
    font-size: var(--text-scale-2);
    color: rgba(246,243,237,0.88);
}
.pg-auth__benefits li i {
    color: var(--color-gold-light);
    flex-shrink: 0;
}

/* RIGHT: Auth panel (scrollable form) */
.pg-auth__panel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-10);
    overflow-y: auto;
    background: linear-gradient(180deg, var(--color-bg-paper) 0%, var(--color-bg-cream) 100%);
}
.pg-auth__panel--scroll { max-height: 100svh; }
.pg-auth__panel-inner {
    width: 100%;
    max-width: 480px;
    position: relative;
    z-index: 1;
}
.pg-auth__form-wrap {
    background: var(--color-white);
    padding: var(--space-9);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-hero), 0 0 0 1px rgba(201,169,98,0.16);
    position: relative;
    overflow: hidden;
}
.pg-auth__form-wrap::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-light));
}
.pg-auth__form-head {
    text-align: left;
    margin-bottom: var(--space-8);
}
.pg-auth__form-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 2.4vw + 0.4rem, 2.25rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--color-primary-dark);
    margin: 0 0 var(--space-2);
}
.pg-auth__form-sub {
    font-size: var(--text-scale-2);
    color: var(--color-ink-soft);
    margin: 0;
    line-height: var(--line-relaxed);
}
.pg-auth__form-extras {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--space-5);
    gap: var(--space-4);
    flex-wrap: wrap;
}
.pg-auth__forgot {
    color: var(--color-gold-dark);
    font-weight: 600;
    font-size: var(--text-scale-1);
    transition: color var(--duration-sm);
    text-decoration: none;
}
.pg-auth__forgot:hover { color: var(--color-primary-dark); text-decoration: underline; }
.pg-auth__terms {
    margin-top: var(--space-4);
}
.pg-auth__terms label {
    font-size: var(--text-scale-1);
    color: var(--color-ink-soft);
    line-height: 1.5;
}
.pg-auth__terms label a {
    color: var(--color-gold-dark);
    font-weight: 600;
    text-decoration: none;
}
.pg-auth__terms label a:hover { text-decoration: underline; }
.pg-auth__submit { margin-top: var(--space-6); }
.pg-auth__divider {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin: var(--space-8) 0;
    color: var(--color-ink-muted);
}
.pg-auth__divider::before,
.pg-auth__divider::after {
    content: '';
    flex: 1 1 auto;
    height: 1px;
    background: rgba(26,46,85,0.1);
}
.pg-auth__divider span {
    font-size: var(--text-scale-0);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--color-ink-muted);
}
.pg-auth__switch {
    text-align: center;
    margin: 0;
    font-size: var(--text-scale-2);
    color: var(--color-ink-soft);
}
.pg-auth__switch a {
    color: var(--color-gold-dark);
    font-weight: 700;
    text-decoration: none;
    transition: color var(--duration-sm);
}
.pg-auth__switch a:hover { color: var(--color-primary-dark); text-decoration: underline; }

/* ==========================================================
   PROFILE PAGE — gradient head + info grid + booking timeline
   ========================================================== */
.pg-banner--profile {
    min-height: 52svh;
}
.pg-banner__meta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-4);
    margin-top: var(--space-5);
    flex-wrap: wrap;
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-pill);
    background: rgba(253,251,247,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(246,243,237,0.14);
}
.pg-banner__meta > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--text-scale-2);
    font-weight: 500;
    color: rgba(246,243,237,0.9);
}
.pg-banner__meta i { color: var(--color-gold-light); }
.pg-banner__meta .dot {
    width: 5px; height: 5px; border-radius: 50%;
    background: rgba(201,169,98,0.7);
    display: inline-block;
    padding: 0;
}
.pg-banner__featured {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    color: var(--color-primary-dark) !important;
    font-weight: 700 !important;
    font-size: var(--text-scale--1) !important;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Profile header card (gradient) */
.pg-profile { padding-bottom: var(--space-16); }
.pg-profile__head {
    margin-top: -80px;
    position: relative;
    z-index: 10;
    margin-bottom: var(--space-10);
}
.pg-profile__head-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--space-8);
    align-items: center;
    padding: var(--space-10);
    border-radius: var(--radius-2xl);
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 55%, var(--color-gold-dark) 140%);
    color: var(--color-white);
    box-shadow: var(--shadow-hero), 0 0 0 1px rgba(201,169,98,0.25);
    position: relative;
    overflow: hidden;
}
.pg-profile__head-card::after {
    content: '';
    position: absolute;
    top: -40%; right: -10%;
    width: 520px; height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,169,98,0.22) 0%, transparent 65%);
    pointer-events: none;
}
.pg-profile__avatar {
    position: relative;
    width: 140px; height: 140px;
    flex-shrink: 0;
    border-radius: var(--radius-full);
    overflow: hidden;
    background: var(--color-bg-cream);
    box-shadow: var(--shadow-6), 0 0 0 4px rgba(253,251,247,0.25);
}
.pg-profile__avatar img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.pg-profile__avatar-placeholder {
    width: 100%; height: 100%;
    display: grid; place-items: center;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
}
.pg-profile__avatar-ring {
    position: absolute;
    top: -8px; left: -8px;
    width: 156px; height: 156px;
    border-radius: var(--radius-full);
    border: 4px solid var(--color-gold);
    box-shadow: var(--shadow-gold);
    pointer-events: none;
    z-index: -1;
}
.pg-profile__head-info { position: relative; z-index: 1; }
.pg-profile__name {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 2.5vw + 0.4rem, 2.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 var(--space-2);
    color: var(--color-white);
    letter-spacing: -0.01em;
}
.pg-profile__handle {
    margin: 0 0 var(--space-5);
    font-size: var(--text-scale-2);
    color: rgba(246,243,237,0.82);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    flex-wrap: wrap;
}
.pg-profile__handle a { color: inherit; text-decoration: none; transition: color var(--duration-sm); }
.pg-profile__handle a:hover { color: var(--color-gold-light); }
.pg-profile__stats {
    display: flex;
    gap: var(--space-6);
    flex-wrap: wrap;
}
.pg-profile-stat { display: flex; flex-direction: column; }
.pg-profile-stat strong {
    font-family: var(--font-display);
    font-size: var(--text-scale-5);
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 4px;
}
.pg-profile-stat span {
    font-size: var(--text-scale--1);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(246,243,237,0.72);
    font-weight: 500;
}
.pg-profile__head-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    position: relative;
    z-index: 1;
}
.pg-profile__head-actions .btn {
    justify-content: center;
    min-width: 180px;
}

/* Profile grid: sidebar + main */
.pg-profile__grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: var(--space-8);
    align-items: start;
}
.pg-profile__side { display: grid; gap: var(--space-6); }
.pg-profile__info-card { padding: var(--space-8); }
.pg-profile__info-list {
    list-style: none;
    padding: 0;
    margin: var(--space-6) 0 var(--space-7);
    display: grid;
    gap: var(--space-4);
}
.pg-profile__info-list li {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    padding-bottom: var(--space-3);
    border-bottom: 1px dashed rgba(26,46,85,0.1);
}
.pg-profile__info-list li:last-child { border-bottom: none; padding-bottom: 0; }
.pg-profile__info-label {
    font-size: var(--text-scale--1);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold-dark);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.pg-profile__info-label i { font-size: 0.9em; }
.pg-profile__info-value {
    font-size: var(--text-scale-3);
    font-weight: 600;
    color: var(--color-primary-dark);
}
.pg-profile__sidenav {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 2px;
}
.pg-profile__sidenav a {
    display: flex; align-items: center; gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-md);
    color: var(--color-ink-soft);
    font-weight: 500;
    transition: all var(--duration-sm) var(--ease-smooth);
    text-decoration: none;
}
.pg-profile__sidenav a:hover {
    background: rgba(201,169,98,0.1);
    color: var(--color-primary-dark);
    transform: translateX(2px);
}

/* Booking timeline */
.pg-bookings-timeline {
    display: grid;
    gap: var(--space-6);
    margin-top: var(--space-8);
}
.pg-booking-card {
    padding: 0;
    overflow: hidden;
    display: block;
}
.pg-booking-card::before { content: none; }
.pg-booking-card__top {
    padding: var(--space-6) var(--space-7) var(--space-5);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 4px solid var(--color-gold);
    gap: var(--space-4);
    flex-wrap: wrap;
}
.pg-booking-card__ref-label {
    font-size: var(--text-scale--1);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold-dark);
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}
.pg-booking-card__ref-id {
    font-family: var(--font-display);
    font-size: var(--text-scale-5);
    font-weight: 700;
    color: var(--color-primary-dark);
}
.pg-booking-card__status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: var(--text-scale--1);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.pg-booking-card__status i { font-size: 0.9em; }
.pg-booking-card__status--paid {
    background: rgba(40,167,69,0.12);
    color: #1e7e34;
    border: 1px solid rgba(40,167,69,0.3);
}
.pg-booking-card__status--pending {
    background: rgba(255,152,0,0.12);
    color: #b36b00;
    border: 1px solid rgba(255,152,0,0.3);
}
.pg-booking-card__status--failed,
.pg-booking-card__status--cancelled,
.pg-booking-card__status--canceled {
    background: rgba(220,53,69,0.1);
    color: #a71d2a;
    border: 1px solid rgba(220,53,69,0.3);
}
.pg-booking-card__body {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    gap: var(--space-6);
    padding: 0 var(--space-7) var(--space-7);
    align-items: start;
}
.pg-booking-card__img {
    width: 200px;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-3);
    flex-shrink: 0;
}
.pg-booking-card__img img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 600ms var(--ease-smooth);
}
.pg-booking-card:hover .pg-booking-card__img img { transform: scale(1.05); }
.pg-booking-card__info { display: grid; gap: var(--space-4); }
.pg-booking-card__apt-name {
    font-family: var(--font-display);
    font-size: var(--text-scale-5);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: var(--color-primary-dark);
    letter-spacing: -0.01em;
}
.pg-booking-card__apt-meta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-4);
    flex-wrap: wrap;
    color: var(--color-ink-soft);
    font-size: var(--text-scale-2);
}
.pg-booking-card__apt-meta span {
    display: inline-flex; align-items: center; gap: 6px;
}
.pg-booking-card__apt-meta i { color: var(--color-gold); }
.pg-booking-card__details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
    padding: var(--space-5);
    background: var(--color-bg-cream);
    border-radius: var(--radius-lg);
}
.pg-booking-card__detail-label {
    font-size: var(--text-scale--1);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-gold-dark);
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}
.pg-booking-card__detail-value {
    font-size: var(--text-scale-3);
    font-weight: 600;
    color: var(--color-primary-dark);
    line-height: 1.35;
    word-break: break-word;
}
.pg-booking-card__tx-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    font-size: var(--text-scale--1);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.pg-booking-card__tx-status--success {
    background: rgba(40,167,69,0.12);
    color: #1e7e34;
}
.pg-booking-card__tx-status--pending {
    background: rgba(255,152,0,0.12);
    color: #b36b00;
}
.pg-booking-card__tx-status--error,
.pg-booking-card__tx-status--failed {
    background: rgba(220,53,69,0.1);
    color: #a71d2a;
}
.pg-booking-card__price {
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    color: var(--color-white);
    min-width: 200px;
    text-align: right;
    display: grid;
    gap: var(--space-5);
    align-content: start;
}
.pg-price-label {
    font-size: var(--text-scale--1);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold-light);
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
    text-align: left;
}
.pg-price-value {
    font-family: var(--font-display);
    font-size: var(--text-scale-6);
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-align: left;
}
.pg-booking-card__actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    text-align: left;
}
.pg-booking-card__actions .btn { justify-content: flex-start; }

/* ==========================================================
   THANK YOU — confirmation page with SVG check draw
   ========================================================== */
.pg-thanks {
    position: relative;
    min-height: 100svh;
    color: var(--color-white);
    isolation: isolate;
    overflow: hidden;
    padding-block: var(--space-16) var(--space-20);
}
.pg-thanks__bg { position: absolute; inset: 0; z-index: -2; }
.pg-thanks__bg-img {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    transform-origin: 55% 40%;
    animation-duration: 30s;
}
.pg-thanks__scrim {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(5,16,38,0.62) 0%, rgba(5,16,38,0.72) 45%, rgba(5,16,38,0.97) 100%),
        radial-gradient(ellipse at 50% 25%, rgba(201,169,98,0.22) 0%, transparent 60%);
    z-index: -1;
}
.pg-thanks__glow {
    position: absolute;
    top: 8%; left: 50%;
    transform: translateX(-50%);
    width: 640px; height: 640px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,169,98,0.28) 0%, transparent 60%);
    filter: blur(10px);
    pointer-events: none;
    z-index: 0;
}
.pg-thanks__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-10);
}
.pg-thanks__hero {
    text-align: center;
    max-width: 720px;
    position: relative;
}
.pg-thanks__check {
    position: relative;
    width: 160px; height: 160px;
    margin: 0 auto var(--space-8);
}
.pg-thanks__check .fx-check-draw { width: 100%; height: 100%; display: block; }
.pg-thanks__check-glow {
    position: absolute;
    top: -40px; left: -40px;
    width: 240px; height: 240px;
    border-radius: 50%;
    background: rgba(201,169,98,0.45);
    filter: blur(60px);
    z-index: -1;
    opacity: 0.85;
}
.pg-thanks__sparkle {
    position: absolute;
    color: var(--color-gold-light);
    font-size: 1.25rem;
    pointer-events: none;
}
.pg-thanks__sparkle--tl { top: -8%; left: 8%; animation-delay: 0.2s; }
.pg-thanks__sparkle--tr { top: 12%; right: 6%; animation-delay: 0.8s; }
.pg-thanks__sparkle--bl { bottom: 8%; left: 14%; animation-delay: 1.4s; }
.pg-thanks__sparkle--br { bottom: 18%; right: 10%; animation-delay: 0.5s; }
.pg-thanks__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw + 0.5rem, 3.4rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: var(--space-5) 0 var(--space-3);
    color: var(--color-white);
}
.pg-thanks__title em {
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.pg-thanks__sub {
    font-size: var(--text-scale-3);
    line-height: var(--line-relaxed);
    color: rgba(246,243,237,0.82);
    margin: 0 auto;
    max-width: 56ch;
}
.pg-thanks__sub strong { color: var(--color-gold-light); font-weight: 600; }

/* Thank you card */
.pg-thanks__card {
    width: 100%;
    max-width: 1100px;
    padding: var(--space-10);
    color: var(--color-primary-dark);
    border-top: 4px solid var(--color-gold);
    position: relative;
    overflow: hidden;
}
.pg-thanks__card::before { content: none; }
.pg-thanks__card-head {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-8);
    padding-bottom: var(--space-6);
    border-bottom: 1px solid rgba(26,46,85,0.08);
}
.pg-thanks__card-head h2 {
    font-family: var(--font-display);
    font-size: var(--text-scale-5);
    font-weight: 700;
    margin: 0;
    color: var(--color-primary-dark);
    letter-spacing: -0.01em;
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
}
.pg-thanks__card-head h2 i {
    color: var(--color-gold);
}
.pg-thanks__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.3fr;
    gap: var(--space-8);
    align-items: start;
}
.pg-thanks__col { display: grid; gap: var(--space-4); }
.pg-thanks__item {
    display: grid;
    gap: 4px;
    padding-bottom: var(--space-4);
    border-bottom: 1px dashed rgba(26,46,85,0.1);
}
.pg-thanks__item:last-child { border-bottom: none; padding-bottom: 0; }
.pg-thanks__item span {
    font-size: var(--text-scale--1);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-gold-dark);
    font-weight: 600;
}
.pg-thanks__item strong {
    font-size: var(--text-scale-3);
    font-weight: 600;
    color: var(--color-primary-dark);
    line-height: 1.4;
    word-break: break-word;
}
.pg-thanks__col--wide {
    padding: var(--space-8);
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    color: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-5);
    position: relative;
    overflow: hidden;
}
.pg-thanks__col--wide::after {
    content: '';
    position: absolute;
    top: -40%; right: -10%;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,169,98,0.18) 0%, transparent 65%);
    pointer-events: none;
}
.pg-thanks__total {
    padding: var(--space-5);
    background: rgba(253,251,247,0.06);
    backdrop-filter: blur(6px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(201,169,98,0.25);
    display: grid;
    gap: 4px;
    margin-bottom: var(--space-6);
    position: relative;
    z-index: 1;
}
.pg-thanks__total span {
    font-size: var(--text-scale--1);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold-light);
    font-weight: 600;
}
.pg-thanks__total strong {
    font-family: var(--font-display);
    font-size: var(--text-scale-7);
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.pg-thanks__status {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4);
    border-radius: var(--radius-md);
    background: rgba(40,167,69,0.14);
    border: 1px solid rgba(40,167,69,0.35);
    color: rgba(246,243,237,0.95);
    font-size: var(--text-scale-2);
    line-height: 1.5;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.pg-thanks__status i { color: #6cd98a; flex-shrink: 0; font-size: 1.1rem; }
.pg-thanks__status strong { font-weight: 700; color: var(--color-white); }
.pg-thanks__fine {
    margin-top: var(--space-8);
    padding-top: var(--space-6);
    border-top: 1px dashed rgba(26,46,85,0.1);
    font-size: var(--text-scale-1);
    color: var(--color-ink-muted);
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    width: 100%;
    flex-wrap: wrap;
}
.pg-thanks__fine i { color: var(--color-gold); flex-shrink: 0; }
.pg-thanks__requests {
    margin-top: var(--space-8);
    padding-top: var(--space-6);
    border-top: 1px dashed rgba(26,46,85,0.1);
}
.pg-thanks__requests h5,
.pg-thanks__next h5 {
    font-family: var(--font-display);
    font-size: var(--text-scale-4);
    font-weight: 700;
    color: var(--color-primary-dark);
    margin: 0 0 var(--space-3);
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
}
.pg-thanks__requests h5 i,
.pg-thanks__next h5 i { color: var(--color-gold); font-size: 0.95em; }
.pg-thanks__requests p {
    margin: 0;
    padding: var(--space-4);
    background: var(--color-bg-cream);
    border-left: 3px solid var(--color-gold);
    border-radius: var(--radius-md);
    color: var(--color-ink-soft);
    font-style: italic;
    line-height: var(--line-relaxed);
}
.pg-thanks__next { margin-top: var(--space-8); }
.pg-thanks__next ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: var(--space-3);
}
.pg-thanks__next li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    background: var(--color-bg-cream);
    border-radius: var(--radius-md);
    color: var(--color-ink-soft);
    line-height: 1.5;
    font-size: var(--text-scale-2);
}
.pg-thanks__next li i { color: var(--color-gold); flex-shrink: 0; margin-top: 3px; }
.pg-thanks__next li strong { color: var(--color-primary-dark); font-weight: 700; }
.pg-thanks__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    margin-top: var(--space-8);
    justify-content: flex-end;
}

/* ==========================================================
   APARTMENT DETAIL — gallery stage, amenities, booking sidebar
   ========================================================== */
.pg-detail { padding-top: var(--space-12); }
.pg-detail__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-10);
    align-items: start;
}
.pg-detail__main { display: grid; gap: var(--space-10); }
.pg-detail__block { padding-top: var(--space-4); }
.pg-detail__desc {
    font-size: var(--text-scale-3);
    line-height: var(--line-loose);
    color: var(--color-ink-soft);
    margin: 0;
}
/* Gallery stage (reuse index pg-gallery style classes already defined earlier) */
.pg-gallery__stage {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-6);
    background: var(--color-primary-dark);
}
.pg-gallery__main-img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 400ms var(--ease-smooth);
}
.pg-gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px; height: 48px;
    border-radius: var(--radius-full);
    background: rgba(253,251,247,0.92);
    backdrop-filter: blur(8px);
    border: none;
    color: var(--color-primary-dark);
    cursor: pointer;
    display: grid; place-items: center;
    font-size: 0.95rem;
    box-shadow: var(--shadow-4);
    transition: all var(--duration-sm);
    z-index: 2;
}
.pg-gallery__nav:hover {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    color: var(--color-primary-dark);
    transform: translateY(-50%) scale(1.08);
}
.pg-gallery__nav--prev { left: var(--space-4); }
.pg-gallery__nav--next { right: var(--space-4); }
.pg-gallery__counter {
    position: absolute;
    bottom: var(--space-4);
    right: var(--space-4);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    background: rgba(5,16,38,0.72);
    backdrop-filter: blur(8px);
    color: var(--color-white);
    font-size: var(--text-scale--1);
    font-weight: 600;
    letter-spacing: 0.04em;
    z-index: 2;
}
.pg-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: var(--space-2);
    margin-top: var(--space-4);
}
.pg-gallery__thumb {
    border: none;
    padding: 0;
    background: transparent;
    aspect-ratio: 1/1;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-2);
    opacity: 0.6;
    transition: all var(--duration-sm);
    border: 2px solid transparent;
}
.pg-gallery__thumb img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.pg-gallery__thumb:hover { opacity: 1; transform: translateY(-2px); }
.pg-gallery__thumb.is-active {
    opacity: 1;
    border-color: var(--color-gold);
    box-shadow: var(--shadow-gold);
}

/* Amenities grid (mini) */
.pg-detail__amenities {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-4);
}
.pg-amenity-mini {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-5);
    background: var(--color-bg-cream);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(26,46,85,0.05);
    transition: all var(--duration-sm) var(--ease-smooth);
    position: relative;
    overflow: hidden;
}
.pg-amenity-mini::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--color-gold), var(--color-gold-light));
    transform-origin: top;
    transform: scaleY(0);
    transition: transform var(--duration-md) var(--ease-spring);
}
.pg-amenity-mini:hover {
    background: var(--color-white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-4);
    border-color: rgba(201,169,98,0.3);
}
.pg-amenity-mini:hover::before { transform: scaleY(1); }
.pg-amenity-mini__icon {
    width: 44px; height: 44px;
    flex-shrink: 0;
    display: grid; place-items: center;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    color: var(--color-primary-dark);
    font-size: 1.05rem;
    box-shadow: var(--shadow-2);
}
.pg-amenity-mini h5 {
    font-size: var(--text-scale-3);
    font-weight: 700;
    color: var(--color-primary-dark);
    margin: 0 0 4px;
    font-family: var(--font-body);
}
.pg-amenity-mini p {
    margin: 0;
    font-size: var(--text-scale-1);
    line-height: 1.5;
    color: var(--color-ink-soft);
}

/* Booking sidebar sticky card */
.pg-detail__sidebar {
    position: sticky;
    top: 110px;
}
.pg-detail__booking-card { padding: var(--space-8); }
.pg-detail__booking-card::before { content: none; }
.pg-detail__book-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-6);
    border-bottom: 1px dashed rgba(26,46,85,0.1);
}
.pg-detail__book-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-wrap: wrap;
}
.pg-detail__book-price .curr {
    font-size: var(--text-scale-4);
    font-weight: 700;
    color: var(--color-gold-dark);
    line-height: 1;
}
.pg-detail__book-price .num {
    font-family: var(--font-display);
    font-size: var(--text-scale-7);
    font-weight: 700;
    line-height: 1;
    color: var(--color-primary-dark);
    letter-spacing: -0.02em;
}
.pg-detail__book-price .per {
    font-size: var(--text-scale-1);
    color: var(--color-ink-muted);
    font-weight: 500;
}
.pg-detail__book-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    background: var(--color-bg-cream);
    font-size: var(--text-scale-1);
    font-weight: 700;
    color: var(--color-primary-dark);
    flex-shrink: 0;
}
.pg-detail__book-rating i { color: var(--color-gold); }
.pg-detail__book-perks {
    list-style: none;
    padding: 0;
    margin: var(--space-6) 0;
    padding-top: var(--space-5);
    border-top: 1px dashed rgba(26,46,85,0.1);
    display: grid;
    gap: var(--space-3);
}
.pg-detail__book-perks li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-scale-2);
    color: var(--color-ink-soft);
    line-height: 1.4;
}
.pg-detail__book-perks i {
    width: 20px;
    color: var(--color-gold-dark);
    flex-shrink: 0;
    text-align: center;
    font-size: 0.95em;
}
.pg-detail__book-trust {
    margin-top: var(--space-6);
    padding-top: var(--space-5);
    border-top: 1px dashed rgba(26,46,85,0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--text-scale-1);
    color: var(--color-ink-muted);
    line-height: 1.5;
}
.pg-detail__book-trust i { color: var(--color-gold); flex-shrink: 0; }

/* Similar apartments row */
.pg-detail__similar {
    margin-top: var(--space-16);
    padding-top: var(--space-10);
    border-top: 1px solid rgba(26,46,85,0.06);
}
.pg-similar-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-8);
}

/* ==========================================================
   PAYMENT PAGE — initiate grid, receipt lines
   ========================================================== */
.pg-payment { padding-top: var(--space-12); }
.pg-payment__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: var(--space-10);
    align-items: start;
}
.pg-payment__details { padding: var(--space-10); }
.pg-payment__details::before { content: none; }
.pg-payment__apt {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    padding: var(--space-6);
    background: var(--color-bg-cream);
    border-radius: var(--radius-xl);
    margin: var(--space-8) 0;
    border: 1px solid rgba(201,169,98,0.2);
}
.pg-payment__apt-img {
    width: 140px;
    aspect-ratio: 4/3;
    flex-shrink: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-3);
    border: 2px solid rgba(201,169,98,0.35);
}
.pg-payment__apt-img img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.pg-payment__apt-info { flex: 1; min-width: 0; }
.pg-payment__apt-info h3 {
    font-family: var(--font-display);
    font-size: var(--text-scale-5);
    font-weight: 700;
    color: var(--color-primary-dark);
    margin: 0 0 var(--space-2);
    letter-spacing: -0.01em;
}
.pg-payment__apt-loc {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 var(--space-3);
    color: var(--color-ink-soft);
    font-size: var(--text-scale-2);
}
.pg-payment__apt-loc i { color: var(--color-gold-dark); }
.pg-payment__apt-meta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-4);
    flex-wrap: wrap;
    color: var(--color-ink-soft);
    font-size: var(--text-scale-2);
}
.pg-payment__apt-meta span {
    display: inline-flex; align-items: center; gap: 6px;
}
.pg-payment__apt-meta i { color: var(--color-gold); }
.pg-payment__rows {
    display: grid;
    gap: var(--space-5);
}
.pg-payment__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
}
.pg-payment__row-item {
    display: grid;
    gap: 6px;
    padding-bottom: var(--space-4);
    border-bottom: 1px dashed rgba(26,46,85,0.08);
}
.pg-payment__row:last-child .pg-payment__row-item { border-bottom: none; padding-bottom: 0; }
.pg-payment__label {
    font-size: var(--text-scale--1);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold-dark);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.pg-payment__label i { font-size: 0.9em; }
.pg-payment__value {
    font-size: var(--text-scale-3);
    font-weight: 600;
    color: var(--color-primary-dark);
    line-height: 1.4;
}
.pg-payment__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    font-size: var(--text-scale--1);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    width: fit-content;
}
.pg-payment__badge i { font-size: 0.9em; }
.pg-payment__badge--pending {
    background: rgba(255,152,0,0.12);
    color: #b36b00;
    border: 1px solid rgba(255,152,0,0.3);
}
.pg-payment__badge--paid {
    background: rgba(40,167,69,0.12);
    color: #1e7e34;
    border: 1px solid rgba(40,167,69,0.3);
}
.pg-payment__requests {
    margin-top: var(--space-6);
    padding: var(--space-6);
    background: var(--color-bg-cream);
    border-left: 3px solid var(--color-gold);
    border-radius: var(--radius-md);
}
.pg-payment__requests h5,
.pg-payment__breakdown h5 {
    font-family: var(--font-display);
    font-size: var(--text-scale-4);
    font-weight: 700;
    color: var(--color-primary-dark);
    margin: 0 0 var(--space-3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.pg-payment__requests p {
    margin: 0;
    color: var(--color-ink-soft);
    font-style: italic;
    line-height: var(--line-relaxed);
}

/* Right side sticky payment card */
.pg-payment__side { position: sticky; top: 110px; }
.pg-payment__card {
    padding: var(--space-9);
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    color: var(--color-white);
    border-top: 4px solid var(--color-gold);
    overflow: hidden;
    position: relative;
}
.pg-payment__card::before { content: none; }
.pg-payment__card::after {
    content: '';
    position: absolute;
    top: -40%; right: -25%;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,169,98,0.22) 0%, transparent 65%);
    pointer-events: none;
}
.pg-payment__card-head {
    position: relative;
    z-index: 1;
    padding-bottom: var(--space-6);
    margin-bottom: var(--space-6);
    border-bottom: 1px dashed rgba(255,255,255,0.15);
}
.pg-payment__card-head h2 {
    font-family: var(--font-display);
    font-size: var(--text-scale-5);
    font-weight: 700;
    color: var(--color-white);
    margin: 0;
    letter-spacing: -0.01em;
}
.pg-payment__card-head p {
    margin: 6px 0 0;
    color: rgba(246,243,237,0.75);
    font-size: var(--text-scale-2);
    line-height: 1.5;
}
.pg-payment__breakdown {
    position: relative;
    z-index: 1;
}
.pg-payment__breakdown h5 { color: var(--color-gold-light); margin-bottom: var(--space-4); }
.pg-payment__line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-4);
    padding-bottom: var(--space-4);
    margin-bottom: var(--space-4);
    border-bottom: 1px dashed rgba(255,255,255,0.12);
}
.pg-payment__line:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.pg-payment__line span:first-child {
    color: rgba(246,243,237,0.7);
    font-size: var(--text-scale-2);
}
.pg-payment__line span:last-child {
    font-weight: 600;
    color: rgba(246,243,237,0.95);
}
.pg-payment__ref {
    font-family: var(--font-mono);
    font-size: var(--text-scale-1);
    padding: 6px 10px;
    border-radius: var(--radius-md);
    background: rgba(253,251,247,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    letter-spacing: 0.04em;
}
.pg-payment__line--total {
    padding-top: var(--space-5);
    margin-top: var(--space-5);
    padding-bottom: var(--space-5);
    margin-bottom: var(--space-7);
    border-top: 2px solid var(--color-gold) !important;
    border-bottom: none !important;
}
.pg-payment__line--total span:first-child {
    font-family: var(--font-display);
    font-size: var(--text-scale-3);
    font-weight: 700;
    color: var(--color-gold-light);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.pg-payment__amount {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw + 0.4rem, 2.8rem);
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.pg-payment__trust {
    position: relative;
    z-index: 1;
    display: grid;
    gap: var(--space-3);
    margin: var(--space-7) 0;
}
.pg-payment__trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    background: rgba(253,251,247,0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.1);
    font-size: var(--text-scale-2);
    color: rgba(246,243,237,0.88);
    line-height: 1.45;
}
.pg-payment__trust-item i {
    color: var(--color-gold-light);
    flex-shrink: 0;
    font-size: 1.1rem;
}
.pg-payment__actions {
    position: relative;
    z-index: 1;
    margin-top: var(--space-7);
}
.pg-payment__actions .btn { width: 100%; }
.pg-payment__fine {
    position: relative;
    z-index: 1;
    margin: var(--space-7) 0 0;
    padding: var(--space-5);
    background: rgba(5,16,38,0.35);
    border: 1px dashed rgba(201,169,98,0.35);
    border-radius: var(--radius-md);
    font-size: var(--text-scale-1);
    color: rgba(246,243,237,0.72);
    line-height: var(--line-relaxed);
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
}
.pg-payment__fine i {
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 3px;
    font-size: 1.1rem;
}
