:root {
  --white: #FAFAF8;
  --paper: #F2F0EB;
  --rule: #E0DDD6;
  --ink: #102a4d;
  --ink2: #1a3a5c;
  --mid: #5C5A56;
  --pale: #9A9894;
  --gold: #b19570;
  --gold-dk: #9a8060;
  --ff: 'Prompt', sans-serif;
  --fd: 'Prompt', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--ff);
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden
}

a {
  text-decoration: none
}

/* ── BUTTONS ── */
.btn {
  font-family: var(--ff);
  border-radius: 0;
  letter-spacing: .06em;
  font-weight: 600;
  font-size: .82rem;
  padding: .75rem 1.75rem;
  transition: all .18s
}

.btn-gold {
  background: var(--gold);
  color: white;
  border: none
}

.btn-gold:hover {
  background: var(--gold-dk);
  color: white
}

.btn-ink {
  background: var(--ink);
  color: white;
  border: none
}

.btn-ink:hover {
  background: var(--ink2);
  color: white
}

.btn-ol-ink {
  border: 1.5px solid var(--ink);
  color: var(--ink);
  background: transparent
}

.btn-ol-ink:hover {
  background: var(--ink);
  color: var(--white)
}

.btn-ol-white {
  border: 1.5px solid rgba(255, 255, 255, .4);
  color: white;
  background: transparent
}

.btn-ol-white:hover {
  border-color: white;
  background: rgba(255, 255, 255, .08);
  color: white
}

.btn-white-filled {
  background: white;
  color: var(--gold);
  font-weight: 700
}

.btn-white-filled:hover {
  background: var(--paper);
  color: var(--gold-dk)
}

/* ── SECTION TYPOGRAPHY ── */
.sec-tag {
  font-size: .67rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin-bottom: .6rem
}

.sec-title {
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -.01em
}

.sec-lead {
  font-size: .93rem;
  color: var(--mid);
  line-height: 1.85;
  font-weight: 300
}

.sec-link {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  transition: gap .2s
}

.sec-link::after {
  content: '';
  width: 18px;
  height: 1.5px;
  background: var(--gold);
  transition: width .2s
}

.sec-link:hover::after {
  width: 28px
}

.display-heading {
 
  font-size: clamp(36px, 5.5vw, 72px);
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -.02em
}

.display-heading em {
  font-style: normal;
  color: var(--gold)
}

/* ── TOPBAR ── */
.ppsn-topbar {
  background: var(--ink);
  padding: .4rem 0;
  border-bottom: 1px solid rgba(177, 149, 112, .18);
  font-size: .7rem;
  letter-spacing: .08em
}

.ppsn-topbar .tb-id {
  color: rgba(255, 255, 255, .28)
}

.ppsn-topbar a {
  color: rgba(255, 255, 255, .5);
  transition: color .2s
}

.ppsn-topbar a:hover {
  color: var(--gold)
}

.tb-lang {
  border: 1px solid rgba(255, 255, 255, .18);
  padding: .1rem .55rem;
  font-size: .65rem;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .5)
}

/* ── NAVBAR ── */
.ppsn-nav {
  background: var(--white) !important;
  border-bottom: 1px solid var(--rule);
  box-shadow: 0 4px 24px rgba(16, 42, 77, .05);
  padding: 0 !important;
  min-height: 64px
}

.ppsn-nav .container-fluid {
  padding: 0 2rem
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0
}

.brand-bar {
  width: 4px;
  height: 38px;
  background: var(--gold);
  margin-right: .85rem;
  flex-shrink: 0
}

.brand-text b {
  display: block;
  font-family: var(--fd);
  font-size: 1.25rem;
  color: var(--ink);
  letter-spacing: .04em;
  line-height: 1.1
}

.brand-text small {
  font-size: .62rem;
  color: var(--pale);
  letter-spacing: .1em;
  text-transform: uppercase
}

.ppsn-nav .nav-link {
  font-size: .82rem;
  font-weight: 500;
  color: var(--mid) !important;
  padding: 0 1rem !important;
  height: 64px;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: .02em;
  transition: color .18s !important
}

.ppsn-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .2s
}

.ppsn-nav .nav-link:hover,
.ppsn-nav .nav-link.nav-cur {
  color: var(--ink) !important
}

.ppsn-nav .nav-link:hover::after,
.ppsn-nav .nav-link.nav-cur::after {
  transform: scaleX(1)
}

.btn-nav-cta {
  background: var(--gold);
  color: white;
  padding: .6rem 1.4rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  border: none;
  cursor: pointer;
  font-family: var(--ff);
  transition: background .18s;
  border-radius: 0;
  align-self: center;
  margin-left: .5rem
}

.btn-nav-cta:hover {
  background: var(--gold-dk)
}

.navbar-toggler {
  border-color: var(--rule);
  border-radius: 0
}

.navbar-toggler:focus {
  box-shadow: none
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--ink);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(177, 149, 112, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(177, 149, 112, .04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none
}

.page-hero-eyebrow {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.2rem
}

.page-hero-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold)
}

.page-hero-title {
  font-family: var(--fd);
  font-size: clamp(2.5rem, 5vw, 5rem);
  color: white;
  line-height: .95;
  letter-spacing: .01em;
  margin-bottom: 1rem
}

.page-hero-sub {
  font-size: .95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .5);
  max-width: 560px;
  line-height: 1.85
}

.breadcrumb-ppsn {
  display: flex;
  gap: .4rem;
  align-items: center;
  font-size: .72rem;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 1.4rem
}

.breadcrumb-ppsn span {
  color: var(--gold);
  opacity: .6
}

.breadcrumb-ppsn a {
  color: rgba(255, 255, 255, .4);
  cursor: pointer
}

.breadcrumb-ppsn a:hover {
  color: var(--gold)
}


/* ── HERO (homepage) ── */
.ppsn-hero {
  background: var(--white);
  min-height: 90vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column
}

.hero-bg-num {
  position: absolute;
  right: -10px;
  top: -40px;
  font-family: var(--fd);
  font-size: clamp(180px, 26vw, 360px);
  color: var(--paper);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0
}

.hero-main {
  flex: 1;
  position: relative;
  z-index: 2
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.6rem
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0
}

.hero-eyebrow span {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--pale);
  font-weight: 500
}

.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.9;
  max-width: 540px;
  margin-bottom: 2.4rem
}

.hero-card {
  background: var(--ink);
  padding: 2rem;
  height: 100%
}

.hero-card .hc-tag {
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin-bottom: 1.2rem
}

.hc-stat {
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, .07)
}

.hc-stat:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0
}

.hc-n {
  font-family: var(--fd);
  font-size: 2.4rem;
  color: white;
  line-height: 1;
  margin-bottom: .2rem
}

.hc-l {
  font-size: .75rem;
  color: rgba(255, 255, 255, .38);
  letter-spacing: .04em;
  font-weight: 300
}

/* ── SERVICES ── */
.svc-grid {
  border: 1px solid var(--rule)
}

.svc-card {
  padding: 2.6rem 2.2rem;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: white;
  transition: background .22s;
  cursor: default
}

.svc-card:hover {
  background: var(--ink)
}

.svc-num-big {
  font-family: var(--fd);
  font-size: 3.2rem;
  color: var(--paper);
  line-height: 1;
  margin-bottom: .8rem;
  transition: color .22s
}

.svc-card:hover .svc-num-big {
  color: rgba(255, 255, 255, .04)
}

.svc-label {
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin-bottom: .6rem;
  transition: color .22s
}

.svc-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .7rem;
  line-height: 1.3;
  transition: color .22s
}

.svc-body {
  font-size: .84rem;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-weight: 300;
  transition: color .22s
}

.svc-ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem
}

.svc-li {
  font-size: .78rem;
  color: var(--mid);
  padding: .35rem 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  gap: .5rem;
  font-weight: 300;
  transition: all .22s
}

.svc-li::before {
  content: '/';
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 700;
  font-size: .75rem
}

.svc-card:hover .svc-name {
  color: white
}

.svc-card:hover .svc-body {
  color: rgba(255, 255, 255, .45)
}

.svc-card:hover .svc-li {
  color: rgba(255, 255, 255, .4);
  border-color: rgba(255, 255, 255, .06)
}

.svc-btn {
  display: inline-block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(177, 149, 112, .3);
  padding: .48rem 1rem;
  transition: all .22s;
  cursor: pointer
}

.svc-btn:hover,
.svc-card:hover .svc-btn {
  background: var(--gold);
  color: white;
  border-color: var(--gold)
}

/* ── ABOUT (homepage split) ── */
.about-copy {
  padding: 5.5rem 4rem 5.5rem 3.5rem
}

.about-panel {
  background: var(--ink);
  padding: 5.5rem 3.5rem;
  position: relative;
  overflow: hidden
}

.about-panel::before {
  content: '1989';
  position: absolute;
  right: -16px;
  bottom: -24px;
  font-family: var(--fd);
  font-size: 11rem;
  color: rgba(255, 255, 255, .025);
  line-height: 1;
  pointer-events: none
}

.ab-body {
  font-size: .9rem;
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 1.6rem;
  font-weight: 300
}

.ab-pull {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.4rem;
  background: rgba(177, 149, 112, .04);
  margin-bottom: 2rem
}

.ab-pull p {
  font-size: .93rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.6
}

.ab-pull cite {
  font-style: normal;
  font-size: .7rem;
  color: var(--pale);
  letter-spacing: .05em;
  display: block;
  margin-top: .4rem
}

.founder-plate {
  border: 1px solid rgba(255, 255, 255, .1);
  padding: 1.6rem;
  margin-bottom: 1.6rem;
  position: relative;
  z-index: 1
}

.fp-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: .2rem
}

.fp-title {
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
  font-weight: 600
}

.fp-row {
  font-size: .78rem;
  color: rgba(255, 255, 255, .38);
  margin-bottom: .3rem;
  display: flex;
  gap: .5rem;
  font-weight: 300;
  line-height: 1.5
}

.fp-row::before {
  content: '·';
  color: var(--gold);
  flex-shrink: 0
}

.cert-block {
  position: relative;
  z-index: 1
}

.cert-head {
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .2);
  margin-bottom: .75rem
}

.cert-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  font-size: .78rem;
  color: rgba(255, 255, 255, .38);
  font-weight: 300
}

.cert-item:last-child {
  border-bottom: none
}

.cert-sq {
  width: 5px;
  height: 5px;
  background: var(--gold);
  flex-shrink: 0
}

/* ── PROJECTS ── */
.filter-strip .btn {
  border-radius: 0;
  font-size: .75rem;
  font-weight: 500;
  padding: .5rem 1rem;
  border-color: var(--rule);
  color: var(--mid);
  letter-spacing: .03em;
  border-right: none;
  background: white
}

.filter-strip .btn:last-child {
  border-right: 1px solid var(--rule) !important
}

.filter-strip .btn.active,
.filter-strip .btn:hover {
  background: var(--ink) !important;
  color: white !important;
  border-color: var(--ink) !important
}

.proj-grid {
  border: 1px solid var(--rule);
  border-top: none
}

.proj-card {
  padding: 2rem 1.75rem;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: white;
  position: relative;
  transition: background .2s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-height: 200px
}

.proj-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 26px 26px 0;
  border-color: transparent var(--paper) transparent transparent;
  transition: border-color .2s
}

.proj-card:hover {
  background: var(--ink2)
}

.proj-card:hover::before {
  border-color: transparent var(--ink) transparent transparent
}

.proj-card:hover .pc-name {
  color: white
}

.proj-card:hover .pc-client,
.proj-card:hover .pc-meta {
  color: rgba(255, 255, 255, .35)
}

.proj-card:hover .pc-cat {
  background: rgba(177, 149, 112, .15);
  color: var(--gold);
  border-color: rgba(177, 149, 112, .25)
}

.pc-cat {
  display: inline-block;
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  border: 1px solid rgba(177, 149, 112, .2);
  background: rgba(177, 149, 112, .04);
  padding: .18rem .55rem;
  margin-bottom: .8rem;
  transition: all .2s;
  width: fit-content
}

.pc-name {
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .35rem;
  line-height: 1.35;
  transition: color .2s
}

.pc-client {
  font-size: .8rem;
  color: var(--mid);
  font-weight: 300;
  margin-bottom: auto;
  transition: color .2s
}

.pc-meta {
  display: flex;
  gap: 1.2rem;
  font-size: .72rem;
  color: var(--pale);
  margin-top: 1rem;
  transition: color .2s
}

/* ── CLIENTS ── */
.clients-wrap {
  background: var(--paper)
}

.clients-label {
  font-size: .65rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--pale);
  text-align: center;
  font-weight: 500
}

.client-row {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule)
}

.client-cell {
  padding: .9rem .5rem;
  border-right: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center
}

.client-cell:last-child {
  border-right: none
}

.client-cell span {
  font-size: .7rem;
  color: var(--pale);
  text-align: center;
  line-height: 1.4;
  font-weight: 500
}

/* ── CONTACT FORM (homepage) ── */
.contact-section {
  background: var(--ink);
  padding: 5rem 0
}

.contact-section::before {
  display: none
}

.contact-title {
  color: white;
}

.contact-sub {
  font-size: .9rem;
  color: rgba(255, 255, 255, .45);
  font-weight: 300;
  margin-bottom: 0
}

.form-label-ppsn {
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  font-weight: 500;
  margin-bottom: .35rem
}

.form-control-ppsn {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 0;
  color: white;
  padding: .75rem 1rem;
  font-family: var(--ff);
  font-size: .88rem;
  transition: border-color .2s
}

.form-control-ppsn::placeholder {
  color: rgba(255, 255, 255, .2)
}

.form-control-ppsn:focus {
  background: rgba(255, 255, 255, .08);
  border-color: var(--gold);
  box-shadow: none;
  color: white
}

.contact-info-item {
  margin-bottom: 1.4rem
}

.ci-label {
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin-bottom: .25rem
}

.ci-val {
  font-size: .88rem;
  color: rgba(255, 255, 255, .55);
  font-weight: 300;
  line-height: 1.6
}

.contact-divider {
  width: 1px;
  background: rgba(255, 255, 255, .07);
  align-self: stretch;
  margin: 0 2rem
}

/* ── CTA BAND ── */
.ppsn-cta {
  background: var(--gold);
  padding: 4rem 0
}

.cta-display {
  font-family: var(--fd);
  font-size: clamp(1.8rem, 3.8vw, 3.2rem);
  color: white;
  line-height: 1.05;
  letter-spacing: .01em
}

.cta-sub {
  font-size: .9rem;
  color: rgba(255, 255, 255, .65);
  font-weight: 300
}

/* ── FOOTER ── */
.ppsn-footer {
  background: #0c1e36
}

.ft-brand-bar {
  width: 3px;
  height: 30px;
  background: var(--gold);
  margin-right: .75rem;
  flex-shrink: 0
}

.ft-brand-name {
  font-family: var(--fd);
  font-size: 1.3rem;
  color: white;
  letter-spacing: .04em;
  line-height: 1.1
}

.ft-brand-sub {
  font-size: .6rem;
  color: rgba(255, 255, 255, .25);
  letter-spacing: .1em;
  text-transform: uppercase
}

.ft-about {
  font-size: .8rem;
  color: rgba(255, 255, 255, .28);
  line-height: 1.8;
  font-weight: 300
}

.ft-col-head {
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 600
}

.ft-link {
  font-size: .8rem;
  color: rgba(255, 255, 255, .38);
  transition: color .18s;
  font-weight: 300
}

.ft-link:hover {
  color: white
}

.ft-contact-label {
  font-size: .58rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .18);
  display: block;
  margin-bottom: .1rem
}

.ft-contact-val {
  font-size: .8rem;
  color: rgba(255, 255, 255, .38);
  font-weight: 300
}

.ft-divider {
  border-color: rgba(255, 255, 255, .06)
}

.ft-copy {
  font-size: .72rem;
  color: rgba(255, 255, 255, .2)
}

.ft-eco a {
  color: rgba(255, 255, 255, .38);
  transition: color .18s
}

.ft-eco a:hover {
  color: white
}

/* ── ABOUT PAGE ── */
.org-card {
  background: white;
  border: 1px solid var(--rule);
  padding: 2rem
}

.org-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .2rem
}

.org-role {
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
  display: block
}

.org-cred {
  font-size: .8rem;
  color: var(--mid);
  padding: .3rem 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  gap: .5rem;
  font-weight: 300
}

.org-cred:last-child {
  border-bottom: none
}

.org-cred::before {
  content: '·';
  color: var(--gold);
  flex-shrink: 0
}

.cert-badge {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid var(--rule);
  background: white;
  margin-bottom: .5rem
}

.cert-badge-ico {
  width: 36px;
  height: 36px;
  background: rgba(177, 149, 112, .08);
  border: 1px solid rgba(177, 149, 112, .2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold)
}

.cert-badge-name {
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3
}

.cert-badge-desc {
  font-size: .75rem;
  color: var(--mid);
  font-weight: 300
}

.timeline-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem
}

.tl-year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
  min-width: 60px;
  padding-top: .1rem
}

.tl-body {
  border-left: 1px solid var(--rule);
  padding-left: 1.5rem;
  padding-bottom: .5rem
}

.tl-title {
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .3rem
}

.tl-desc {
  font-size: .83rem;
  color: var(--mid);
  font-weight: 300;
  line-height: 1.75
}

/* ── SERVICE DETAIL PAGE ── */
.svc-detail-icon {
  width: 56px;
  height: 56px;
  background: rgba(177, 149, 112, .08);
  border: 1px solid rgba(177, 149, 112, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem
}

.svc-scope-item {
  padding: 1rem 1.2rem;
  border-left: 2px solid var(--gold);
  background: rgba(177, 149, 112, .03);
  margin-bottom: .5rem
}

.svc-scope-title {
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .25rem
}

.svc-scope-desc {
  font-size: .78rem;
  color: var(--mid);
  font-weight: 300;
  line-height: 1.7
}

.process-step {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.4rem;
  border: 1px solid var(--rule);
  background: white;
  margin-bottom: .5rem;
  transition: background .2s
}

.process-step:hover {
  background: var(--paper)
}

.step-num {
  font-family: var(--fd);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  min-width: 44px
}

.step-content {
  .step-title {
    font-size: .95rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: .3rem
  }

  .step-desc {
    font-size: .8rem;
    color: var(--mid);
    font-weight: 300;
    line-height: 1.7
  }
}

.related-proj-card {
  background: white;
  border: 1px solid var(--rule);
  padding: 1.4rem;
  transition: background .2s;
  cursor: pointer
}

.related-proj-card:hover {
  background: var(--ink);
  border-color: var(--ink)
}

.related-proj-card:hover .rpj-name {
  color: white
}

.related-proj-card:hover .rpj-meta {
  color: rgba(255, 255, 255, .4)
}

.rpj-cat {
  font-size: .58rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: .5rem;
  display: block
}

.rpj-name {
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .3rem;
  line-height: 1.35;
  transition: color .2s
}

.rpj-meta {
  font-size: .72rem;
  color: var(--pale);
  transition: color .2s
}

/* ── PORTFOLIO PAGE ── */
.port-stats {
  background: var(--ink);
  padding: 2.5rem 0
}

.port-stat-num {
  font-family: var(--fd);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1
}

.port-stat-lbl {
  font-size: .72rem;
  color: rgba(255, 255, 255, .35);
  letter-spacing: .04em
}

.port-stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, .08)
}

.client-logo-box {
  background: white;
  border: 1px solid var(--rule);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.2rem;
  transition: background .2s
}

.client-logo-box:hover {
  background: var(--paper)
}

.client-logo-box span {
  font-size: .78rem;
  font-weight: 600;
  color: var(--mid);
  text-align: center;
  line-height: 1.3
}

/* ── CONTACT PAGE ── */
.map-placeholder {
  background: var(--paper);
  border: 1px solid var(--rule);
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: .75rem
}

.map-placeholder span {
  font-size: .78rem;
  color: var(--pale);
  letter-spacing: .06em
}

.contact-card {
  background: white;
  border: 1px solid var(--rule);
  padding: 2rem
}

.cc-icon {
  width: 40px;
  height: 40px;
  background: rgba(177, 149, 112, .08);
  border: 1px solid rgba(177, 149, 112, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0
}

.cc-label {
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: .2rem
}

.cc-val {
  font-size: .9rem;
  color: var(--ink);
  font-weight: 500
}

.cc-sub {
  font-size: .78rem;
  color: var(--mid);
  font-weight: 300
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.anim-1 {
  animation: fadeUp .5s .0s both
}

.anim-2 {
  animation: fadeUp .5s .1s both
}

.anim-3 {
  animation: fadeUp .5s .2s both
}

.anim-4 {
  animation: fadeUp .5s .3s both
}

.anim-5 {
  animation: fadeUp .5s .38s both
}

/* ════════════════════════════════
   RESPONSIVE — MOBILE FIRST
   ════════════════════════════════ */

/* ── sm: ≤575px (phones) ── */
@media(max-width:575px) {

  /* Topbar: hide long label, keep contact */
  .ppsn-topbar .tb-id {
    display: none
  }

  .ppsn-topbar .container-fluid {
    justify-content: flex-end
  }

  /* Navbar */
  .ppsn-nav .container-fluid {
    padding: 0 1rem
  }

  .brand-text b {
    font-size: 1.1rem
  }

  .brand-text small {
    display: none
  }

  /* Mobile nav drawer */
  .navbar-collapse {
    background: var(--white);
    border-top: 1px solid var(--rule);
    padding: .5rem 0 1rem;
    margin: 0 -1rem;
    padding: 1rem 1.5rem 1.2rem;
  }

  .ppsn-nav .nav-link {
    height: 48px;
    padding: 0 .5rem !important;
    font-size: .9rem !important;
    border-bottom: 1px solid var(--rule) !important;
  }

  .ppsn-nav .nav-link::after {
    display: none
  }

  .ppsn-nav .nav-link:last-child {
    border-bottom: none !important
  }

  .btn-nav-cta {
    width: 100%;
    margin: 1rem 0 0;
    text-align: center;
    padding: .8rem
  }

  /* Hero */
  .ppsn-hero {
    min-height: auto
  }

  .hero-bg-num {
    font-size: clamp(100px, 38vw, 200px);
    top: -10px;
    right: -5px;
    opacity: .6
  }

  .hero-main .container-fluid {
    padding: 0 1.25rem
  }

  .hero-main .row {
    min-height: auto !important
  }

  .hero-main .col-lg-7 {
    padding: 2.5rem 0 0 !important
  }

  .hero-eyebrow {
    margin-bottom: 1rem
  }

  .display-heading {
    font-size: clamp(32px, 9vw, 56px);
    margin-bottom: 1rem
  }

  .hero-sub {
    font-size: .88rem;
    margin-bottom: 1.6rem;
    max-width: 100%
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center
  }

  .hero-actions {
    flex-direction: column;
    gap: .75rem
  }

  .hero-card {
    display: none
  }

  /* Trust strip: 2-col grid on mobile */
  .ppsn-trust .row {
    display: grid;
    grid-template-columns: 1fr 1fr
  }

  .trust-item {
    padding: .75rem 0 .75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, .07)
  }

  .trust-item:nth-child(2n) {
    border-right: none
  }

  /* Services: single col, compact */
  .svc-card {
    padding: 1.6rem 1.2rem;
    border-right: none !important
  }

  .svc-num-big {
    font-size: 2.4rem;
    margin-bottom: .5rem
  }

  /* About */
  .about-copy {
    padding: 2.5rem 1.25rem
  }

  .about-panel {
    padding: 2.5rem 1.25rem
  }

  .about-panel::before {
    font-size: 6rem
  }

  .ab-pull {
    padding: .75rem 1rem
  }

  /* Projects: single col */
  .proj-card {
    min-height: auto;
    padding: 1.4rem 1.2rem;
    border-right: none !important
  }

  /* Clients row: 2-col grid */
  .client-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr
  }

  .client-cell {
    border-bottom: 1px solid var(--rule) !important
  }

  .client-cell:nth-child(2n) {
    border-right: none !important
  }

  /* Contact section */
  .contact-section {
    padding: 3rem 0
  }

  .contact-divider {
    display: none
  }

  .contact-section .container-fluid {
    padding: 0 1.25rem
  }

  /* Page hero */
  .page-hero {
    padding: 3rem 0 2.5rem
  }

  .page-hero-title {
    font-size: clamp(2rem, 10vw, 3.5rem)
  }

  .page-hero-sub {
    font-size: .85rem
  }

  .breadcrumb-ppsn {
    font-size: .68rem;
    flex-wrap: wrap;
    gap: .3rem
  }

  /* Timeline */
  .timeline-item {
    gap: 1rem
  }

  .tl-year {
    font-size: 1.4rem;
    min-width: 50px
  }

  /* Process steps */
  .process-step {
    padding: 1rem
  }

  .step-num {
    font-size: 1.6rem;
    min-width: 36px
  }

  /* Portfolio stats: wrap */
  .port-stats .d-flex {
    flex-wrap: wrap;
    gap: .5rem
  }

  .port-stat-divider {
    display: none
  }

  .port-stats .text-center {
    flex: 0 0 48%
  }

  /* Filter strip: scroll horizontally */
  .filter-strip {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap !important;
    white-space: nowrap
  }

  .filter-strip .btn {
    flex-shrink: 0;
    font-size: .7rem;
    padding: .45rem .8rem
  }

  /* Contact page cards */
  .contact-card {
    padding: 1.25rem
  }

  .map-placeholder {
    height: 200px
  }

  /* CTA band */
  .ppsn-cta {
    padding: 3rem 0
  }

  .ppsn-cta .d-flex {
    flex-direction: column
  }

  .ppsn-cta .btn {
    width: 100%;
    text-align: center
  }

  /* Footer */
  .ppsn-footer {
    padding: 3rem 1.25rem 1.5rem
  }

  .ppsn-footer .container-fluid {
    padding: 0
  }

  .ft-col-head {
    margin-top: .5rem
  }

  /* Cert badges */
  .cert-badge {
    padding: .9rem
  }

  .cert-badge-ico {
    width: 30px;
    height: 30px;
    font-size: .85rem
  }

  /* Org card */
  .org-card {
    padding: 1.25rem
  }

  /* Section padding */
  .py-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important
  }

  .container-fluid.px-4 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important
  }
}

/* ── md: 576–767px (large phones / small tablets) ── */
@media(min-width:576px) and (max-width:767px) {
  .ppsn-nav .container-fluid {
    padding: 0 1.25rem
  }

  .hero-bg-num {
    font-size: clamp(140px, 30vw, 260px)
  }

  .display-heading {
    font-size: clamp(40px, 8vw, 64px)
  }

  .hero-card {
    display: none
  }

  .ppsn-hero {
    min-height: auto
  }

  .hero-main .col-lg-7 {
    padding: 3rem 0 0 !important
  }

  .about-copy {
    padding: 3rem 2rem
  }

  .about-panel {
    padding: 3rem 2rem
  }

  .svc-card {
    border-right: none !important
  }

  .proj-card {
    border-right: none
  }

  .trust-item {
    padding: .75rem 0 .75rem 1rem
  }

  .page-hero {
    padding: 3.5rem 0 3rem
  }

  .page-hero-title {
    font-size: clamp(2.2rem, 8vw, 4rem)
  }

  .contact-divider {
    display: none
  }

  .filter-strip {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap !important
  }

  .filter-strip .btn {
    flex-shrink: 0
  }

  .port-stats .d-flex {
    flex-wrap: wrap
  }

  .port-stat-divider {
    display: none
  }

  .port-stats .text-center {
    flex: 0 0 48%
  }

  .container-fluid.px-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important
  }
}

/* ── md-lg: 768–991px (tablets) ── */
@media(min-width:768px) and (max-width:991px) {
  .ppsn-nav .container-fluid {
    padding: 0 1.5rem
  }

  .hero-card {
    display: none
  }

  .ppsn-hero {
    min-height: auto
  }

  .hero-main .col-lg-7 {
    padding: 4rem 0 0 !important
  }

  .display-heading {
    font-size: clamp(44px, 7vw, 68px)
  }

  .about-copy {
    padding: 4rem 2.5rem
  }

  .about-panel {
    padding: 4rem 2.5rem
  }

  .contact-divider {
    display: none
  }

  .page-hero {
    padding: 4rem 0 3.5rem
  }

  .port-stats .d-flex {
    flex-wrap: wrap
  }

  .port-stat-divider {
    display: block
  }
}

/* ── lg: ≥992px (desktop) – original styles intact ── */
@media(min-width:992px) {
  .ppsn-nav .container-fluid {
    padding: 0 2rem
  }

  .hero-card {
    display: block
  }

  .about-copy {
    padding: 5.5rem 4rem 5.5rem 3.5rem
  }

  .about-panel {
    padding: 5.5rem 3.5rem
  }

  .contact-divider {
    display: block
  }
}

/* ── MOBILE NAV ACTIVE STATE (all breakpoints below lg) ── */
@media(max-width:991px) {
  .ppsn-nav .nav-link {
    height: auto;
    padding: .75rem .5rem !important;
    border-bottom: 1px solid var(--rule);
  }

  .ppsn-nav .nav-link::after {
    display: none
  }

  .dropdown-menu {
    border-radius: 0 !important;
    border: none;
    border-left: 2px solid var(--gold);
    margin-left: .5rem;
    box-shadow: none !important
  }

  .dropdown-item {
    font-size: .82rem;
    padding: .6rem 1rem
  }

  .dropdown-item:hover {
    background: rgba(177, 149, 112, .08);
    color: var(--gold)
  }

  .navbar-collapse {
    background: var(--white);
    border-top: 1px solid var(--rule);
    padding: .5rem 1rem 1.2rem;
    margin: 0 -2rem;
  }

  .btn-nav-cta {
    margin: .75rem 0 .25rem;
    align-self: flex-start
  }

  /* Trust strip scrollable on narrow */
  .ppsn-trust .container-fluid {
    padding: 0
  }

  .ppsn-trust .row {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
  }

  .trust-item {
    flex: 0 0 200px;
    border-right: 1px solid rgba(255, 255, 255, .07) !important
  }

  /* Section header: stack on narrow */
  .sh-flex-wrap {
    flex-direction: column;
    align-items: flex-start !important
  }

  /* Filter strip scrollable */
  .filter-strip {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap !important
  }

  .filter-strip .btn {
    flex-shrink: 0
  }

  /* CTA band: stack */
  .ppsn-cta .row {
    flex-direction: column;
    gap: 1.5rem
  }

  .ppsn-cta .col-lg-5 {
    justify-content: flex-start !important
  }
}

/* ── TOUCH IMPROVEMENTS ── */
@media(hover:none) and (pointer:coarse) {
  .svc-card:hover {
    background: white
  }

  .svc-card:hover .svc-name {
    color: var(--ink)
  }

  .svc-card:hover .svc-body {
    color: var(--mid)
  }

  .svc-card:hover .svc-li {
    color: var(--mid);
    border-color: var(--rule)
  }

  .svc-card:active {
    background: var(--ink)
  }

  .svc-card:active .svc-name {
    color: white
  }

  .proj-card:hover {
    background: white
  }

  .proj-card:hover .pc-name {
    color: var(--ink)
  }

  .proj-card:active {
    background: var(--ink2)
  }

  .proj-card:active .pc-name {
    color: white
  }

  /* Bigger touch targets */
  .btn {
    padding: .85rem 1.75rem
  }

  .svc-btn {
    padding: .65rem 1.2rem
  }

  .f-btn,
  .filter-strip .btn {
    padding: .6rem 1rem
  }
}

/* ── MOBILE BOTTOM NAV BAR ── */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: .5rem 0 calc(.5rem + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 24px rgba(16, 42, 77, .18);
}

.mbn-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .2rem;
  padding: .4rem .2rem;
  cursor: pointer;
  transition: opacity .18s;
  opacity: .5;
  background: none;
  border: none;
  font-family: var(--ff);
}

.mbn-item.active,
.mbn-item:active {
  opacity: 1
}

.mbn-icon {
  font-size: 1.15rem;
  line-height: 1
}

.mbn-label {
  font-size: .58rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: white;
  font-weight: 500
}

.mbn-item.active .mbn-label {
  color: var(--gold)
}

.mbn-item.active .mbn-icon {
  filter: none
}

/* Spacer so footer not hidden behind mobile nav */
.mobile-nav-spacer {
  display: none
}

@media(max-width:767px) {
  .mobile-bottom-nav {
    display: flex
  }

  .mobile-nav-spacer {
    display: block;
    height: 72px
  }

  body {
    padding-bottom: 0
  }
}

/* ── MOBILE FLOATING CTA ── */
.mobile-fab {
  display: none;
  position: fixed;
  bottom: 76px;
  right: 1.2rem;
  z-index: 998;
  background: var(--gold);
  color: white;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 18px rgba(177, 149, 112, .45);
  border: none;
  cursor: pointer;
  transition: transform .2s, background .2s;
}

.mobile-fab:active {
  transform: scale(.93);
  background: var(--gold-dk)
}

@media(max-width:767px) {
  .mobile-fab {
    display: flex
  }
}

/* ── MOBILE HERO METRICS STRIP ── */
.mobile-metrics {
  display: none
}

@media(max-width:575px) {
  .mobile-metrics {
    display: flex;
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, .06);
  }

  .mm-item {
    flex: 1;
    padding: .8rem .5rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, .07)
  }

  .mm-item:last-child {
    border-right: none
  }

  .mm-n {
    font-family: var(--fd);
    font-size: 1.6rem;
    color: var(--gold);
    line-height: 1
  }

  .mm-l {
    font-size: .6rem;
    color: rgba(255, 255, 255, .3);
    letter-spacing: .04em
  }
}

/* ── MOBILE SECTION CARDS — full-bleed edge-to-edge ── */
@media(max-width:575px) {

  /* Service cards: remove inner borders, keep outer */
  .svc-grid {
    border-radius: 0;
    margin: 0 -1.25rem
  }

  .svc-card:first-child {
    border-top: none
  }

  /* Project grid: edge-to-edge */
  #port-grid,
  .proj-grid {
    margin: 0 -1.25rem;
    border-left: none;
    border-right: none
  }

  .proj-card {
    border-left: none;
    border-right: none
  }

  /* Clients: edge-to-edge */
  .client-row {
    margin: 0 -1.25rem
  }

  /* Contact cards */
  .contact-card {
    border-radius: 0
  }

  /* Process steps */
  .process-step {
    border-left: none;
    border-right: none
  }
}

/* ── 5-CARD SERVICE GRID ── */
/* Desktop: 5 equal columns in one row */
@media(min-width:992px) {
  .svc-grid .col-lg {
    flex: 0 0 20%;
    max-width: 20%;
  }

  /* last card: remove right border */
  .svc-card-last {
    border-right: none !important
  }

  /* no bottom border on last row (all 5 cards) */
  .svc-grid .col-lg.svc-card {
    border-bottom: none
  }
}

/* Tablet md (768–991): 2+2+1 */
@media(min-width:768px) and (max-width:991px) {
  .svc-grid .col-md-6 {
    border-bottom: 1px solid var(--rule) !important
  }

  .svc-grid .col-md-6:nth-child(2n) {
    border-right: none !important
  }

  .svc-grid .col-md-6:nth-last-child(-n+1) {
    border-bottom: none !important
  }

  .svc-card-last {
    border-right: none !important
  }
}

/* Mobile sm: single column */
@media(max-width:767px) {

  .svc-grid .col-md-6,
  .svc-grid .col-lg {
    flex: 0 0 100%;
    max-width: 100%;
    border-right: none !important;
  }

  .svc-card-last {
    border-bottom: 1px solid var(--rule) !important
  }
}