/* ============================================================
   PREM GOPAL — styles.css
   Scoped entirely under .pg — safe to drop into a WordPress page.
   ============================================================ */

/* ---------- Fonts (self-hosted) ---------- */
@font-face {
  font-family: "Fraunces";
  src: url("assets/fonts/fraunces-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("assets/fonts/fraunces-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("assets/fonts/archivo-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("assets/fonts/archivo-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("assets/fonts/archivo-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ---------- Scoped reset ---------- */
.pg, .pg *, .pg *::before, .pg *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.pg {
  /* ---- Design tokens ---- */
  --pg-ink:    #0C2E33;
  --pg-deep:   #10464E;
  --pg-brass:  #D6A03C;
  --pg-copper: #B45B32;
  --pg-paper:  #F0F3F1;
  --pg-slate:  #35494C;
  --pg-line:   #D4DCDA;
  --pg-line-dark: rgba(240,243,241,.18);
  --pg-radius: 10px;
  --pg-container: 1180px;
  --pg-gap: 1.5rem;

  font-family: "Archivo", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--pg-slate);
  background: var(--pg-paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.pg img { display: block; max-width: 100%; height: auto; }
.pg :where(a) { color: inherit; text-decoration: none; }
.pg :where(button) { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
.pg :where(ul, ol) { list-style: none; }
.pg h1, .pg h2, .pg h3 { font-family: "Fraunces", Georgia, serif; font-weight: 700; text-wrap: balance; }
.pg h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); line-height: 1.02; letter-spacing: -0.02em; }
.pg h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); line-height: 1.12; letter-spacing: -0.015em; }
.pg h3 { font-size: 1.33rem; font-family: "Archivo", sans-serif; font-weight: 600; }
.pg small, .pg .pg-small { font-size: 0.875rem; }
.pg p { max-width: 66ch; }
.pg [data-tabular], .pg .pg-num { font-variant-numeric: tabular-nums; }

.pg :focus-visible {
  outline: 2px solid var(--pg-brass);
  outline-offset: 2px;
}
.pg :focus:not(:focus-visible) { outline: none; }

@media (prefers-reduced-motion: reduce) {
  .pg *, .pg *::before, .pg *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Layout helpers ---------- */
.pg-container {
  max-width: var(--pg-container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 640px) {
  .pg-container { padding-inline: 2rem; }
}
.pg-section { padding-block: clamp(3.5rem, 7vw, 6rem); }
.pg-section--paper { background: var(--pg-paper); color: var(--pg-slate); }
.pg-section--ink   { background: var(--pg-ink); color: var(--pg-paper); }
.pg-section--deep  { background: var(--pg-deep); color: var(--pg-paper); }
.pg-section--ink .pg-eyebrow,
.pg-section--deep .pg-eyebrow { color: var(--pg-brass); }
.pg-section--ink h2, .pg-section--deep h2 { color: var(--pg-paper); }
.pg-section--ink p, .pg-section--deep p { color: rgba(240,243,241,.86); }

.pg-eyebrow {
  display: block;
  font-family: "Archivo", sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--pg-brass);
  margin-bottom: 0.6rem;
}
.pg-rule {
  width: 56px;
  height: 2px;
  background: var(--pg-brass);
  border: none;
  margin: 1.1rem 0 1.6rem;
}
.pg-head { max-width: 44rem; margin-bottom: 2.5rem; }

.pg-visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Skip link ---------- */
.pg-skip {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 1000;
  background: var(--pg-brass);
  color: var(--pg-ink);
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  border-radius: 6px;
  transition: top 150ms ease-out;
}
.pg-skip:focus { top: 1rem; }

/* ---------- Buttons ---------- */
.pg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--pg-radius);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.2;
  white-space: nowrap;
  transition: transform 200ms ease-out, background 200ms ease-out, border-color 200ms ease-out;
}
.pg-btn--brass {
  background: var(--pg-brass);
  color: var(--pg-ink);
}
.pg-btn--brass:hover { background: #e2ac47; }
.pg-btn--ghost {
  background: transparent;
  color: inherit;
  border: 1.5px solid rgba(240,243,241,.55);
}
.pg-btn--ghost:hover { border-color: var(--pg-brass); color: var(--pg-brass); }
.pg-btn--ghost-dark {
  background: transparent;
  color: var(--pg-ink);
  border: 1.5px solid var(--pg-slate);
}
.pg-btn--ghost-dark:hover { border-color: var(--pg-copper); color: var(--pg-copper); }
.pg-btn--block { width: 100%; }
.pg-btn svg { flex: none; }

.pg-btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* ---------- Jaali (signature element) ---------- */
.pg-jaali {
  background-image:
    repeating-linear-gradient(45deg,  transparent 0 6px, rgba(214,160,60,.13) 6px 7px),
    repeating-linear-gradient(-45deg, transparent 0 6px, rgba(214,160,60,.13) 6px 7px);
}
.pg-jaali--divider {
  height: 40px;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}

/* ============================================================
   HEADER
   ============================================================ */
.pg-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding-block: 1.1rem;
  transition: background 220ms ease-out, border-color 220ms ease-out, padding 220ms ease-out;
  border-bottom: 1px solid transparent;
}
.pg-header.is-solid {
  background: var(--pg-ink);
  border-bottom-color: var(--pg-line-dark);
  padding-block: 0.7rem;
}
.pg-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(6,20,23,.55) 0%, rgba(6,20,23,0) 100%);
  opacity: 1;
  transition: opacity 220ms ease-out;
}
.pg-header.is-solid::before { opacity: 0; }
.pg-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.pg-wordmark { color: #fff; line-height: 1; }
.pg-wordmark__name {
  display: block;
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
}
.pg-wordmark__loc {
  display: block;
  font-family: "Archivo", sans-serif;
  font-size: 0.72rem;
  color: var(--pg-brass);
  margin-top: 0.15rem;
}
.pg-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.pg-nav__links {
  display: flex;
  gap: 1.6rem;
}
.pg-nav__links a {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 500;
  opacity: .9;
  padding-block: 0.25rem;
  border-bottom: 1.5px solid transparent;
}
.pg-nav__links a:hover { opacity: 1; border-color: var(--pg-brass); }
.pg-burger {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  color: #fff;
}
@media (max-width: 899px) {
  .pg-nav__links { display: none; }
  .pg-burger { display: inline-flex; }
}

.pg-mobile-panel {
  position: fixed;
  top: 0;
  right: -100%;
  bottom: 0;
  width: 100%;
  z-index: 300;
  background: var(--pg-ink);
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  transition: right 240ms ease-out;
}
.pg-mobile-panel.is-open { right: 0; }
.pg-mobile-panel__top { display: flex; justify-content: flex-end; }
.pg-mobile-panel__close { width: 44px; height: 44px; color: #fff; display: inline-flex; align-items: center; justify-content: center; }
.pg-mobile-panel__links { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 2rem; }
.pg-mobile-panel__links a {
  color: #fff;
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
  padding: 0.6rem 0.2rem;
  border-bottom: 1px solid var(--pg-line-dark);
}

/* Secondary nav strip */
.pg-subnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 190;
  background: var(--pg-ink);
  border-bottom: 1px solid var(--pg-line-dark);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 220ms ease-out, opacity 220ms ease-out;
  padding-top: 62px;
}
.pg-subnav.is-visible { transform: translateY(0); opacity: 1; }
.pg-subnav__scroller {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 0.7rem 1.25rem;
  scrollbar-width: none;
}
.pg-subnav__scroller::-webkit-scrollbar { display: none; }
.pg-subnav__scroller a {
  flex: none;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  opacity: .78;
}
.pg-subnav__scroller a:hover { opacity: 1; color: var(--pg-brass); }

/* ============================================================
   HERO
   ============================================================ */
.pg-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.pg-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.pg-hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.pg-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(12,46,51,.92) 0%, rgba(12,46,51,.72) 45%, rgba(12,46,51,.15) 100%);
}
.pg-hero__jaali {
  position: absolute;
  top: 0; right: -20px; bottom: 0;
  width: 120px;
  z-index: 1;
}
@media (max-width: 640px) { .pg-hero__jaali { display: none; } }

.pg-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: 8rem 3rem;
}
.pg-hero__content { max-width: 640px; }
.pg-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1.5px solid var(--pg-brass);
  color: var(--pg-brass);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1.4rem;
}
.pg-hero__by {
  display: block;
  color: var(--pg-brass);
  font-weight: 500;
  margin-top: 1rem;
}
.pg-hero__specs {
  color: #fff;
  font-size: 0.95rem;
  margin-top: 0.5rem;
  font-variant-numeric: tabular-nums;
}
.pg-hero__ctas { margin-top: 1.9rem; }
.pg-hero__rera {
  display: block;
  margin-top: 1.6rem;
  font-size: 0.85rem;
  color: rgba(240,243,241,.8);
}
.pg-hero__rera a { text-decoration: underline; text-underline-offset: 2px; }
.pg-hero__foot {
  position: relative;
  z-index: 2;
  font-size: 0.72rem;
  color: rgba(240,243,241,.65);
  padding: 0 0 1.25rem;
}
.pg-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(240,243,241,.75);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
}
.pg-hero__scroll-rule {
  width: 1px;
  height: 34px;
  background: var(--pg-brass);
  transform-origin: top;
  animation: pg-scrollrule 1.8s ease-in-out 1;
}
@keyframes pg-scrollrule {
  0% { transform: scaleY(0); }
  40% { transform: scaleY(1); }
  100% { transform: scaleY(1); }
}

@media (max-width: 640px) {
  .pg-hero { align-items: flex-end; }
  .pg-hero__scrim { background: linear-gradient(to top, rgba(12,46,51,.95) 10%, rgba(12,46,51,.78) 45%, rgba(12,46,51,.2) 80%); }
  .pg-hero__content { max-width: 100%; }
}

/* Hero reveal (once, on load) */
.pg-reveal { opacity: 0; transform: translateY(14px); }
.pg-hero.is-ready .pg-reveal {
  animation: pg-fadeup 620ms cubic-bezier(.2,.7,.3,1) forwards;
}
.pg-hero.is-ready .pg-reveal:nth-child(1) { animation-delay: 0ms; }
.pg-hero.is-ready .pg-reveal:nth-child(2) { animation-delay: 90ms; }
.pg-hero.is-ready .pg-reveal:nth-child(3) { animation-delay: 170ms; }
.pg-hero.is-ready .pg-reveal:nth-child(4) { animation-delay: 240ms; }
.pg-hero.is-ready .pg-reveal:nth-child(5) { animation-delay: 320ms; }
.pg-hero.is-ready .pg-reveal:nth-child(6) { animation-delay: 400ms; }
@keyframes pg-fadeup {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .pg-reveal { opacity: 1; transform: none; }
}

/* ============================================================
   TRUST PILLS + STAT STRIP
   ============================================================ */
.pg-trust {
  background: var(--pg-ink);
  padding-block: 2.5rem 0;
}
.pg-trust__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.pg-trust__pill {
  border: 1px solid var(--pg-line-dark);
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem;
  color: rgba(240,243,241,.9);
}
.pg-stats {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--pg-line-dark);
}
.pg-stat {
  min-width: 0;
  padding: 1.8rem 1rem;
  text-align: center;
  border-left: 1px solid var(--pg-line-dark);
}
.pg-stat:first-child { border-left: none; }
.pg-stat__value {
  display: block;
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 5vw, 2.4rem);
  color: #fff;
  font-variant-numeric: tabular-nums;
  overflow-wrap: break-word;
}
.pg-stat__label {
  display: block;
  font-family: "Archivo", sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--pg-brass);
  margin-top: 0.35rem;
}
@media (max-width: 640px) {
  .pg-stats { grid-template-columns: repeat(2, 1fr); }
  .pg-stat:nth-child(3) { border-left: none; }
  .pg-stat:nth-child(1), .pg-stat:nth-child(2) { border-bottom: 1px solid var(--pg-line-dark); }
}

/* ============================================================
   OVERVIEW NARRATIVE (4.4)
   ============================================================ */
.pg-overview {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.pg-overview__text p { margin-bottom: 1.1rem; }
.pg-readmore {
  margin-top: 0;
}
.pg-readmore summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--pg-copper);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.4rem 0;
}
.pg-readmore summary::-webkit-details-marker { display: none; }
.pg-readmore summary svg { transition: transform 200ms ease-out; }
.pg-readmore[open] summary svg { transform: rotate(180deg); }
.pg-readmore__body p { margin-top: 1.1rem; }

.pg-overview__figs {
  position: relative;
  display: grid;
  gap: 1rem;
}
.pg-overview__figs img { border-radius: var(--pg-radius); }
.pg-fig-main { grid-column: 1 / -1; }
.pg-fig-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.pg-fig-row .pg-fig:nth-child(2) { margin-top: 1.75rem; }

@media (max-width: 900px) {
  .pg-overview { grid-template-columns: 1fr; }
}

/* ============================================================
   SIX IDEAS (4.5) + EIGHT FUNDAMENTALS (4.6)
   ============================================================ */
.pg-ideas-block { padding-top: 0; }
.pg-ideas__banner {
  border-radius: var(--pg-radius);
  overflow: hidden;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.pg-ideas__banner img { width: 100%; height: clamp(220px, 34vw, 420px); object-fit: cover; object-position: center 30%; }

.pg-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--pg-line-dark);
  border-left: 1px solid var(--pg-line-dark);
}
.pg-idea {
  padding: 1.6rem 1.7rem;
  border-right: 1px solid var(--pg-line-dark);
  border-bottom: 1px solid var(--pg-line-dark);
}
.pg-idea h3 { color: #fff; font-size: 1.1rem; margin-bottom: 0.5rem; }
.pg-idea p { color: rgba(240,243,241,.78); font-size: 0.96rem; }
@media (max-width: 900px) { .pg-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pg-grid-3 { grid-template-columns: 1fr; } }

.pg-fundamentals { margin-top: clamp(3rem, 6vw, 4.5rem); }
.pg-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--pg-line-dark);
  border-left: 1px solid var(--pg-line-dark);
}
.pg-fundamental {
  padding: 1.5rem 1.4rem;
  border-right: 1px solid var(--pg-line-dark);
  border-bottom: 1px solid var(--pg-line-dark);
  font-weight: 500;
  color: #fff;
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  min-height: 92px;
}
@media (max-width: 900px) { .pg-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pg-grid-4 { grid-template-columns: 1fr; } }

/* ============================================================
   OFFICES & PRICE (4.7) + COSTING (4.8)
   ============================================================ */
.pg-table-wrap { overflow-x: hidden; }
.pg-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--pg-line);
  border-radius: var(--pg-radius);
  overflow: hidden;
}
.pg-table th, .pg-table td {
  text-align: left;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--pg-line);
  font-size: 0.98rem;
}
.pg-table thead th {
  background: var(--pg-paper);
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  color: var(--pg-slate);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.pg-table tbody tr:last-child td { border-bottom: none; }
.pg-table td[data-label="Price"] { font-variant-numeric: tabular-nums; }

@media (max-width: 700px) {
  .pg-table thead { display: none; }
  .pg-table, .pg-table tbody, .pg-table tr, .pg-table td { display: block; width: 100%; }
  .pg-table tr {
    border: 1px solid var(--pg-line);
    border-radius: var(--pg-radius);
    margin-bottom: 1rem;
    overflow: hidden;
  }
  .pg-table td {
    border-bottom: 1px solid var(--pg-line);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
  }
  .pg-table td:last-child { border-bottom: none; }
  .pg-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--pg-slate);
  }
}

.pg-foot-note {
  font-size: 0.85rem;
  color: var(--pg-slate);
  opacity: .8;
  margin-top: 1.2rem;
  max-width: 60ch;
}

.pg-chip-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1rem; }
.pg-chip {
  border: 1px solid var(--pg-line);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  color: var(--pg-slate);
}

.pg-costing { margin-top: clamp(3rem, 6vw, 4.5rem); }
.pg-costing-panel {
  border: 1px solid var(--pg-line);
  border-radius: var(--pg-radius);
  padding: 0.5rem 1.6rem;
  max-width: 640px;
}
.pg-costing-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--pg-line);
  font-size: 0.98rem;
}
.pg-costing-row:last-child { border-bottom: none; }
.pg-costing-row--total { font-weight: 700; font-family: "Fraunces", serif; font-size: 1.1rem; }
.pg-costing-row span:last-child { font-variant-numeric: tabular-nums; color: var(--pg-copper); font-weight: 600; }

/* ============================================================
   FLOOR PLANS (4.9)
   ============================================================ */
.pg-plans__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--pg-line-dark);
  padding-bottom: 1rem;
}
.pg-tab {
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(240,243,241,.75);
  border: 1px solid transparent;
}
.pg-tab:hover { color: #fff; }
.pg-tab[aria-selected="true"] {
  background: var(--pg-brass);
  color: var(--pg-ink);
  font-weight: 600;
}
.pg-plan-panel { display: none; }
.pg-plan-panel.is-active { display: block; }
.pg-plan-frame {
  position: relative;
  border-radius: var(--pg-radius);
  overflow: hidden;
  background: #fff;
}
.pg-plan-frame img {
  width: 100%;
  filter: blur(7px);
  transition: filter 220ms ease-out;
  cursor: default;
}
.pg-plan-frame.is-unlocked img { filter: none; cursor: zoom-in; }
.pg-plan-lock {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  background: rgba(12,46,51,.55);
  color: #fff;
  padding: 2rem;
}
.pg-plan-frame.is-unlocked .pg-plan-lock { display: none; }
.pg-plan-lock p { max-width: 24rem; font-weight: 500; }
.pg-plan-note {
  font-size: 0.82rem;
  color: rgba(240,243,241,.65);
  margin-top: 1rem;
}
.pg-plans__unlocked-cta { margin-top: 2rem; display: none; }
.pg-plans__unlocked-cta.is-visible { display: block; }

/* ============================================================
   GALLERY (4.10)
   ============================================================ */
.pg-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.pg-gallery-item {
  position: relative;
  border-radius: var(--pg-radius);
  overflow: hidden;
  cursor: zoom-in;
  text-align: left;
  display: block;
  width: 100%;
}
.pg-gallery-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.pg-gallery-tag {
  position: absolute;
  top: 0.6rem; right: 0.6rem;
  background: rgba(12,46,51,.78);
  color: #fff;
  font-size: 0.65rem;
  padding: 0.3rem 0.55rem;
  border-radius: 4px;
  letter-spacing: 0.02em;
}
.pg-gallery-cap {
  display: block;
  font-weight: 500;
  font-size: 0.88rem;
  margin-top: 0.6rem;
  color: var(--pg-slate);
}
@media (max-width: 900px) { .pg-gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .pg-gallery-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FACADE BREAK (4.11)
   ============================================================ */
.pg-facade {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.pg-facade img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pg-facade__scrim { position: absolute; inset: 0; background: rgba(12,46,51,.72); }
.pg-facade__inner { position: relative; z-index: 1; max-width: 40rem; padding: 2rem; }
.pg-facade__inner .pg-eyebrow { color: var(--pg-brass); }
.pg-facade__inner p { margin: 1rem auto 0; color: rgba(240,243,241,.9); }

/* ============================================================
   LOCATION (4.12)
   ============================================================ */
.pg-location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.pg-dist-grid { display: grid; gap: 1.4rem; margin-bottom: 1rem; }
.pg-dist {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  border-top: 1px solid var(--pg-line);
  padding-top: 1.1rem;
}
.pg-dist__value {
  font-family: "Fraunces", serif;
  font-weight: 700;
  color: var(--pg-brass);
  font-size: 1.8rem;
  flex: none;
  width: 4.2rem;
}
.pg-dist__label { font-weight: 500; }
.pg-map-fig { position: relative; border-radius: var(--pg-radius); overflow: hidden; cursor: zoom-in; }
.pg-map-fig img { width: 100%; }
.pg-map-fig__cue {
  position: absolute;
  bottom: 0.8rem; right: 0.8rem;
  background: rgba(12,46,51,.8);
  color: #fff;
  font-size: 0.75rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
}
.pg-address { margin-top: 1.5rem; font-weight: 500; }

.pg-conn-tabs { grid-column: 1 / -1; margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.pg-conn__tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.pg-conn__panel { display: none; }
.pg-conn__panel.is-active { display: block; }
.pg-conn__bucket {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  color: var(--pg-copper);
  font-size: 0.85rem;
  margin-bottom: 0.9rem;
}
.pg-conn__list li {
  padding: 0.85rem 0;
  border-top: 1px solid var(--pg-line);
}
.pg-conn__list li:last-child { border-bottom: 1px solid var(--pg-line); }

@media (max-width: 900px) {
  .pg-location { grid-template-columns: 1fr; }
}

/* ============================================================
   FIVE THINGS (4.13) — reuse pg-idea style in a 5-col grid
   ============================================================ */
.pg-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--pg-line-dark);
  border-left: 1px solid var(--pg-line-dark);
}
.pg-grid-5 .pg-idea { border-right: 1px solid var(--pg-line-dark); border-bottom: 1px solid var(--pg-line-dark); }
@media (max-width: 900px) { .pg-grid-5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pg-grid-5 { grid-template-columns: 1fr; } }

/* ============================================================
   DEVELOPER (4.14)
   ============================================================ */
.pg-developer__intro { max-width: 62rem; }
.pg-trust-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.4rem; }
.pg-trust-chips .pg-chip { border-color: var(--pg-copper); color: var(--pg-copper); font-weight: 500; }
.pg-consultants { margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.pg-consultants h3 { margin-bottom: 1.2rem; }
.pg-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--pg-line);
  border-left: 1px solid var(--pg-line);
}
.pg-consultant {
  padding: 1.4rem 1.5rem;
  border-right: 1px solid var(--pg-line);
  border-bottom: 1px solid var(--pg-line);
}
.pg-consultant__name { font-weight: 600; display: block; }
.pg-consultant__role { font-size: 0.85rem; color: var(--pg-brass-ish, var(--pg-copper)); display: block; margin-top: 0.2rem; }
@media (max-width: 700px) { .pg-grid-6 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .pg-grid-6 { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ (4.15)
   ============================================================ */
.pg-faq { max-width: 48rem; }
.pg-faq-item {
  border-bottom: 1px solid var(--pg-line);
}
.pg-faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 0;
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
}
.pg-faq-item summary::-webkit-details-marker { display: none; }
.pg-faq-item summary svg { flex: none; transition: transform 200ms ease-out; color: var(--pg-brass); }
.pg-faq-item[open] summary svg { transform: rotate(45deg); }
.pg-faq-item__body { padding-bottom: 1.4rem; color: var(--pg-slate); }

/* ============================================================
   CHANNEL PARTNER (4.16)
   ============================================================ */
.pg-partner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.2rem;
  align-items: start;
}
.pg-partner__photo {
  width: 128px; height: 128px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--pg-brass);
  flex: none;
}
.pg-partner__photo img { width: 100%; height: 100%; object-fit: cover; }
.pg-partner__name { font-size: 1.8rem; }
.pg-partner__role { color: var(--pg-brass); font-weight: 500; font-size: 0.85rem; margin-top: 0.3rem; display: block; }
.pg-partner__headline { margin-top: 1rem; }
.pg-partner__tel {
  display: inline-block;
  margin-top: 1rem;
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #fff;
}
.pg-partner__copy { margin-top: 1rem; }
.pg-partner .pg-btn-row { margin-top: 1.6rem; }
@media (max-width: 560px) {
  .pg-partner { grid-template-columns: 1fr; text-align: left; }
}

/* ============================================================
   ENQUIRE + FOOTER (4.17)
   ============================================================ */
.pg-enquire-inline { max-width: 640px; }
.pg-enquire-inline__lede { margin-bottom: 1.8rem; }

.pg-footer {
  position: relative;
  background: var(--pg-ink);
  color: rgba(240,243,241,.85);
  padding-top: 4rem;
  overflow: hidden;
}
.pg-footer__jaali { position: absolute; inset: 0; z-index: 0; opacity: .6; }
.pg-footer__inner { position: relative; z-index: 1; }
.pg-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--pg-line-dark);
}
.pg-footer__col h3 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.pg-footer__col .pg-wordmark__name { color: #fff; }
.pg-footer__col p { font-size: 0.92rem; margin-top: 0.8rem; }
.pg-footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 0.2rem; }
.pg-footer__col a:hover { color: var(--pg-brass); }
.pg-footer__disclosures { padding-block: 2.2rem; display: grid; gap: 1.4rem; border-bottom: 1px solid var(--pg-line-dark); }
.pg-footer__disclosures h4 { font-size: 0.78rem; color: var(--pg-brass); font-weight: 600; margin-bottom: 0.4rem; }
.pg-footer__disclosures p { font-size: 0.75rem; color: rgba(240,243,241,.65); max-width: 90ch; }
.pg-footer__bottom { padding-block: 1.6rem; font-size: 0.78rem; color: rgba(240,243,241,.6); text-align: center; }

@media (max-width: 900px) {
  .pg-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .pg-footer__grid { grid-template-columns: 1fr; }
}

/* padding for fixed sticky bar */
.pg { padding-bottom: 62px; }

/* ============================================================
   FORM (shared template — modal / inline / popup)
   ============================================================ */
.pg-form__row { margin-bottom: 1.2rem; }
.pg-form__label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
}
.pg-form__input {
  width: 100%;
  border: 1px solid var(--pg-line);
  border-radius: 8px;
  padding: 0.8rem 0.9rem;
  font: inherit;
  font-size: 0.98rem;
  background: #fff;
  color: var(--pg-slate);
}
.pg-form__input:focus { border-color: var(--pg-brass); }
.pg-form__input[aria-invalid="true"] { border-color: var(--pg-copper); }
.pg-form__tel-wrap {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--pg-line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.pg-form__tel-wrap:focus-within { border-color: var(--pg-brass); }
.pg-form__tel-prefix {
  display: flex;
  align-items: center;
  padding: 0 0.8rem;
  background: var(--pg-paper);
  font-weight: 600;
  border-right: 1px solid var(--pg-line);
}
.pg-form__tel-wrap input {
  border: none;
  flex: 1;
  padding: 0.8rem 0.9rem;
  font: inherit;
  font-size: 0.98rem;
}
.pg-form__tel-wrap input:focus { outline: none; }
.pg-form__helper { font-size: 0.78rem; color: var(--pg-slate); opacity: .7; margin-top: 0.35rem; }
.pg-form__error {
  font-size: 0.8rem;
  color: var(--pg-copper);
  margin-top: 0.35rem;
  font-weight: 500;
  display: none;
}
.pg-form__row.has-error .pg-form__error { display: block; }
.pg-form__row.has-error .pg-form__input,
.pg-form__row.has-error .pg-form__tel-wrap { border-color: var(--pg-copper); }

.pg-radio-group { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.pg-radio-pill { position: relative; }
.pg-radio-pill input {
  position: absolute;
  opacity: 0;
  width: 100%; height: 100%;
  cursor: pointer;
  margin: 0;
}
.pg-radio-pill span {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--pg-line);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.88rem;
}
.pg-radio-pill input:checked + span {
  background: var(--pg-ink);
  color: #fff;
  border-color: var(--pg-ink);
}
.pg-radio-pill input:focus-visible + span {
  outline: 2px solid var(--pg-brass);
  outline-offset: 2px;
}

.pg-form__honeypot { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.pg-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.82rem;
  line-height: 1.5;
}
.pg-form__consent input { margin-top: 0.25rem; flex: none; width: 17px; height: 17px; }

.pg-form__submit-note {
  font-size: 0.8rem;
  text-align: center;
  margin-top: 0.9rem;
  color: var(--pg-slate);
  opacity: .75;
}

/* WhatsApp confirm step */
.pg-confirm { text-align: center; padding-block: 0.5rem; }
.pg-confirm h3 { margin-bottom: 0.6rem; }
.pg-confirm p { margin: 0 auto 1.4rem; }
.pg-confirm__fallback { margin-top: 1rem; font-size: 0.85rem; }
.pg-confirm__fallback a { text-decoration: underline; }

/* ============================================================
   MODAL
   ============================================================ */
.pg-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(12,46,51,.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.pg-modal-overlay.is-open { display: flex; }
.pg-modal {
  background: var(--pg-paper);
  color: var(--pg-slate);
  border-radius: var(--pg-radius);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  position: relative;
}
.pg-modal__close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--pg-slate);
}
.pg-modal__close:hover { background: var(--pg-line); }
.pg-modal h2 { font-size: 1.55rem; padding-right: 2rem; margin-bottom: 1.5rem; }

/* ============================================================
   10-SECOND POPUP
   ============================================================ */
.pg-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 480;
  background: rgba(12,46,51,.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.pg-popup-overlay.is-open { display: flex; }
.pg-popup {
  position: relative;
  background: var(--pg-ink);
  color: #fff;
  border-radius: var(--pg-radius);
  border-top: 2px solid var(--pg-brass);
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  overflow: hidden;
  overflow-y: auto;
  padding: 2.2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.pg-popup::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 90px; height: 90px;
  background-image:
    repeating-linear-gradient(45deg,  transparent 0 6px, rgba(214,160,60,.18) 6px 7px),
    repeating-linear-gradient(-45deg, transparent 0 6px, rgba(214,160,60,.18) 6px 7px);
  -webkit-mask-image: radial-gradient(circle at top right, #000 0%, transparent 70%);
          mask-image: radial-gradient(circle at top right, #000 0%, transparent 70%);
  pointer-events: none;
}
.pg-popup__close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  z-index: 1;
}
.pg-popup__close:hover { background: rgba(255,255,255,.1); }
.pg-popup h2 { font-size: 1.4rem; padding-right: 1.5rem; margin-bottom: 0.6rem; position: relative; z-index: 1; }
.pg-popup > p { color: rgba(240,243,241,.85); margin-bottom: 1.4rem; position: relative; z-index: 1; }
.pg-popup .pg-form { position: relative; z-index: 1; }
.pg-popup .pg-form__label { color: #fff; }
.pg-popup .pg-form__input,
.pg-popup .pg-form__tel-wrap { background: rgba(255,255,255,.06); border-color: var(--pg-line-dark); color: #fff; }
.pg-popup .pg-form__tel-prefix { background: rgba(255,255,255,.08); border-color: var(--pg-line-dark); color: #fff; }
.pg-popup .pg-radio-pill span { border-color: var(--pg-line-dark); color: #fff; }
.pg-popup .pg-form__helper { color: rgba(240,243,241,.6); }
.pg-popup .pg-form__submit-note { color: rgba(240,243,241,.6); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.pg-lightbox {
  position: fixed;
  inset: 0;
  z-index: 520;
  background: rgba(6,20,23,.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.pg-lightbox.is-open { display: flex; }
.pg-lightbox img { max-width: 100%; max-height: 84vh; border-radius: 6px; object-fit: contain; }
.pg-lightbox__close, .pg-lightbox__prev, .pg-lightbox__next {
  position: absolute;
  color: #fff;
  width: 48px; height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.pg-lightbox__close:hover, .pg-lightbox__prev:hover, .pg-lightbox__next:hover { background: rgba(255,255,255,.12); }
.pg-lightbox__close { top: 1.25rem; right: 1.25rem; }
.pg-lightbox__prev { left: 1.25rem; top: 50%; transform: translateY(-50%); }
.pg-lightbox__next { right: 1.25rem; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) {
  .pg-lightbox__prev { left: 0.25rem; }
  .pg-lightbox__next { right: 0.25rem; }
}

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */
.pg-stickybar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 260;
  height: 62px;
  background: var(--pg-ink);
  border-top: 1px solid var(--pg-brass);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: env(safe-area-inset-bottom);
}
.pg-stickybar__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  color: #fff;
  border-right: 1px solid var(--pg-line-dark);
}
.pg-stickybar__btn:last-child { border-right: none; }
.pg-stickybar__btn svg { width: 20px; height: 20px; }
.pg-stickybar__btn span { font-size: 0.72rem; }

.pg-fab-whatsapp {
  position: fixed;
  right: 18px;
  bottom: calc(62px + 18px + 62px + 12px);
  z-index: 250;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.28);
}
.pg-fab-whatsapp svg { width: 28px; height: 28px; }

.pg-fab-chat {
  position: fixed;
  right: 18px;
  bottom: calc(62px + 18px);
  z-index: 250;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--pg-ink);
  border: 2px solid var(--pg-brass);
  padding: 2px;
  overflow: visible;
}
.pg-fab-chat__img { width: 100%; height: 100%; border-radius: 50%; overflow: hidden; }
.pg-fab-chat__img img { width: 100%; height: 100%; object-fit: cover; }
.pg-fab-chat__dot {
  position: absolute;
  top: 2px; right: 2px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--pg-brass);
  border: 2px solid var(--pg-ink);
}
.pg-fab-teaser {
  position: fixed;
  right: 88px;
  bottom: calc(62px + 18px + 6px);
  z-index: 249;
  max-width: 210px;
  background: #fff;
  color: var(--pg-slate);
  border-radius: 12px 12px 2px 12px;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  transition: opacity 220ms ease-out, transform 220ms ease-out;
}
.pg-fab-teaser.is-visible { opacity: 1; transform: translateX(0); pointer-events: auto; }

@media (max-width: 400px) {
  .pg-fab-teaser { max-width: 44vw; right: 78px; font-size: 0.78rem; padding: 0.6rem 0.8rem; }
}

/* ============================================================
   CHATBOT
   ============================================================ */
.pg-chatbot {
  position: fixed;
  right: 18px;
  bottom: calc(62px + 18px + 62px + 12px + 56px + 12px);
  z-index: 270;
  width: 340px;
  height: 480px;
  max-height: 72vh;
  background: var(--pg-paper);
  border-radius: var(--pg-radius);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.pg-chatbot.is-open { display: flex; }
.pg-chatbot__header {
  background: var(--pg-ink);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1rem;
  flex: none;
}
.pg-chatbot__avatar { width: 36px; height: 36px; border-radius: 50%; overflow: hidden; flex: none; }
.pg-chatbot__avatar img { width: 100%; height: 100%; object-fit: cover; }
.pg-chatbot__id { flex: 1; min-width: 0; }
.pg-chatbot__name { font-weight: 600; font-size: 0.92rem; display: block; }
.pg-chatbot__role { font-size: 0.72rem; color: var(--pg-brass); display: block; }
.pg-chatbot__close { width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center; color: #fff; flex: none; }
.pg-chatbot__body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.pg-msg { max-width: 82%; padding: 0.65rem 0.9rem; font-size: 0.9rem; line-height: 1.45; }
.pg-msg--bot {
  align-self: flex-start;
  background: #fff;
  border: 1px solid var(--pg-line);
  border-radius: 10px 10px 10px 2px;
}
.pg-msg--user {
  align-self: flex-end;
  background: var(--pg-brass);
  color: var(--pg-ink);
  border-radius: 10px 10px 2px 10px;
  font-weight: 500;
}
.pg-msg--typing { align-self: flex-start; background: #fff; border: 1px solid var(--pg-line); border-radius: 10px 10px 10px 2px; padding: 0.7rem 1rem; }
.pg-typing-dots { display: inline-flex; gap: 4px; }
.pg-typing-dots span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--pg-slate);
  opacity: .5;
  animation: pg-typing 1s ease-in-out infinite;
}
.pg-typing-dots span:nth-child(2) { animation-delay: .15s; }
.pg-typing-dots span:nth-child(3) { animation-delay: .3s; }
@keyframes pg-typing { 0%, 60%, 100% { opacity: .3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }

.pg-chatbot__replies {
  flex: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.8rem 1rem;
  border-top: 1px solid var(--pg-line);
  background: #fff;
}
.pg-reply-chip {
  border: 1px solid var(--pg-line);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.82rem;
  background: var(--pg-paper);
}
.pg-reply-chip:hover { border-color: var(--pg-brass); }
.pg-chatbot__footer {
  flex: none;
  text-align: center;
  font-size: 0.68rem;
  color: var(--pg-slate);
  opacity: .65;
  padding: 0.5rem;
  border-top: 1px solid var(--pg-line);
  background: #fff;
}

@media (max-width: 480px) {
  .pg-chatbot {
    width: 100%;
    height: 100%;
    max-height: 100%;
    right: 0; left: 0; bottom: 0; top: 0;
    border-radius: 0;
  }
}
