/* Patto Business Centre – Premium Page
   Scoped under .pbc to avoid affecting other pages.
*/

.pbc{
  --ink: #141414;
  --muted: #5a5a5a;
  --line: rgba(0,0,0,.10);
  --card: #ffffff;
  --soft: #f6f6f6;
  --shadow: 0 18px 45px rgba(0,0,0,.10);
  --radius: 18px;
  --radius2: 22px;

  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 28px;
  color: var(--ink);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Breadcrumb */
.pbc-bc{
  margin: 18px 0 14px;
  font-size: 14px;
  color: #6a6a6a;
}
.pbc-bc a{ color:#444; text-decoration:none; }
.pbc-bc a:hover{ text-decoration:underline; }
.pbc-bc span{ margin: 0 8px; color:#9a9a9a; }

/* HERO */
.pbc-hero{
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow);
  background:
    radial-gradient(900px 480px at 14% 0%, rgba(225,177,44,.22), transparent 60%),
    linear-gradient(180deg, #101010 0%, #1a1a1a 100%);
  color: #f5f5f5;
}
.pbc-hero__inner{
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 0;
}
.pbc-hero__copy{
  padding: 28px 26px 26px;
}
.pbc-hero h1{
  margin: 0 0 8px;
  font-size: 44px;
  line-height: 1.06;
  letter-spacing: .2px;
}
.pbc-hero__sub{
  margin: 0 0 14px;
  color: rgba(255,255,255,.85);
  font-size: 18px;
}
.pbc-hero__lead{
  margin: 0 0 14px;
  max-width: 70ch;
  color: rgba(255,255,255,.90);
  line-height: 1.65;
}

/* Pills */
.pbc-pills{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 18px;
}
.pbc-pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.92);
  font-size: 13px;
}
.pbc-pill b{ font-weight: 800; }

/* CTA buttons */
.pbc-cta{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 6px 0 14px;
}
.pbc-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  user-select: none;
}
.pbc-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(0,0,0,.25);
}
.pbc-btn--primary{
  background: var(--brand-yellow, #e1b12c);
  color: #101010;
}
.pbc-btn--ghost{
  background: transparent;
  border-color: rgba(255,255,255,.28);
  color: #ffffff;
}

/* Hero meta */
.pbc-hero__meta{
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.pbc-meta{
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  padding: 12px 12px;
}
.pbc-meta__k{
  font-size: 12px;
  letter-spacing: .3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.70);
  margin-bottom: 4px;
}
.pbc-meta__v{
  font-size: 13.5px;
  color: rgba(255,255,255,.92);
  line-height: 1.45;
}

/* Hero brand panel */
.pbc-hero__brand{
  border-left: 1px solid rgba(255,255,255,.10);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.10));
}
.pbc-hero__brand img{
  width: min(380px, 84%);
  height: auto;
  border-radius: 10px;
  box-shadow: 0 26px 70px rgba(0,0,0,.45);
}
.pbc-hero__brandnote{
  text-align: center;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  line-height: 1.4;
  max-width: 34ch;
}

/* Intro strip */
.pbc-strip{
  margin: 18px 0;
}
.pbc-strip__inner{
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, var(--soft));
  border: 1px solid var(--line);
  padding: 20px 24px;
  box-shadow: 0 14px 34px rgba(0,0,0,.06);
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.pbc-strip__title{
  font-weight: 900;
  font-size: 18px;
  line-height: 1.2;
  color: #1b1b1b;
  padding-right: 24px;
  border-right: 1px solid var(--line);
}
.pbc-strip__content{
  display: grid;
  gap: 14px;
}
.pbc-strip__text{
  margin: 0;
  color: #333;
  line-height: 1.6;
  max-width: 52ch;
}
.pbc-strip__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}
.pbc-strip__list li{
  position: relative;
  padding-left: 16px;
  color: #262626;
  font-size: 14px;
  line-height: 1.45;
}
.pbc-strip__list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-yellow, #e1b12c);
}

/* Sections */
.pbc-section{
  margin: 18px 0;
}
.pbc-section__head{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}
.pbc-section__head h2{
  margin: 0;
  font-size: 26px;
  letter-spacing: .2px;
}
.pbc-section__head p{
  margin: 0;
  color: var(--muted);
}

/* Gallery */
.pbc-gallery{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-auto-rows: 180px;
  gap: 12px;
}
.pbc-shot{
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.10);
  background: #000;
  position: relative;
  box-shadow: 0 16px 36px rgba(0,0,0,.08);
}
.pbc-shot--featured{
  grid-row: span 2;
}
.pbc-shot img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .25s ease;
}
.pbc-shot:hover img{ transform: scale(1.03); }
.pbc-shot figcaption{
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: #fff;
  background: rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.18);
}

/* Note */
.pbc-note{
  margin-top: 12px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 12px 14px;
  color: #444;
  box-shadow: 0 12px 28px rgba(0,0,0,.05);
}

/* Alt section background */
.pbc-section--alt{
  border-radius: var(--radius2);
  background: linear-gradient(180deg, var(--soft), #fff);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(0,0,0,.06);
  padding: 18px;
}

/* Two-column grid for specs/included */
.pbc-grid2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pbc-cardbox{
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  padding: 16px;
  box-shadow: 0 14px 34px rgba(0,0,0,.06);
}
.pbc-cardbox h2{
  margin: 0 0 12px;
  font-size: 20px;
}

/* Box list */
.pbc-listbox{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.pbc-listbox li{
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  padding: 12px 12px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  line-height: 1.45;
}
.pbc-listbox li b{
  font-weight: 900;
  color: #1b1b1b;
  white-space: nowrap;
}
.pbc-listbox li span{
  color: #444;
  text-align: right;
}

/* Mini included grid */
.pbc-mini{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.pbc-mini__item{
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  padding: 12px 12px;
}
.pbc-mini__k{
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: .25px;
  margin-bottom: 6px;
}
.pbc-mini__v{
  font-weight: 900;
  color: #141414;
}

/* Terms callout */
.pbc-terms{
  margin-top: 12px;
  border-radius: 16px;
  border: 1px dashed rgba(0,0,0,.18);
  background: #fff;
  padding: 12px 12px;
}
.pbc-terms__title{
  font-weight: 900;
  margin-bottom: 6px;
}
.pbc-terms__text{
  color: #444;
  line-height: 1.55;
}

/* Location */
.pbc-loc{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.pbc-loc__box{
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  padding: 16px;
  box-shadow: 0 14px 34px rgba(0,0,0,.06);
}
.pbc-loc__title{
  font-weight: 900;
  margin-bottom: 8px;
}
.pbc-loc__text{
  color: #444;
  line-height: 1.6;
}

/* Final CTA */
.pbc-final{
  margin: 18px 0 0;
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow);
  background:
    radial-gradient(900px 420px at 14% 0%, rgba(225,177,44,.22), transparent 60%),
    linear-gradient(180deg, #101010 0%, #171717 100%);
  color: #f2f2f2;
}
.pbc-final__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 18px;
}
.pbc-final h2{
  margin: 0 0 6px;
  font-size: 22px;
}
.pbc-final p{
  margin: 0;
  color: rgba(255,255,255,.80);
  line-height: 1.55;
}
.pbc-final__actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 980px){
  .pbc-hero__inner{ grid-template-columns: 1fr; }
  .pbc-hero__brand{ border-left: none; border-top: 1px solid rgba(255,255,255,.10); }
  .pbc-hero__meta{ grid-template-columns: 1fr; }
  .pbc-strip__inner{ grid-template-columns: 1fr; }
  .pbc-strip__title{ padding-right: 0; border-right: 0; }
  .pbc-strip__list{ grid-template-columns: 1fr; }
  .pbc-gallery{ grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .pbc-shot--featured{ grid-row: span 1; grid-column: span 2; }
  .pbc-grid2{ grid-template-columns: 1fr; }
  .pbc-loc{ grid-template-columns: 1fr; }
  .pbc-final__inner{ flex-direction: column; align-items: flex-start; }
}

.pbc-mapcard{
  margin-top: 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 16px 36px rgba(0,0,0,.08);
  overflow: hidden;
}

.pbc-mapcard__head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 16px;
  border-bottom:1px solid rgba(0,0,0,.08);
}

.pbc-mapcard__head h3{
  margin:0;
  font-size:16px;
  font-weight:900;
}

.pbc-mapcard__link{
  font-size:13px;
  text-decoration:none;
  color:#333;
}
.pbc-mapcard__link:hover{ text-decoration:underline; }

.pbc-mapembed{
  position:relative;
  width:100%;
  aspect-ratio: 16 / 9;
  background:#eee;
}

.pbc-mapembed iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

/* WhatsApp Button */
.pbc-btn--whatsapp{
  background: #25D366;
  color: #fff;
}

.pbc-btn--whatsapp:hover{
  background: #1ebe5d;
}
