*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --ivory:#f3efe5;
  --paper:#f7f3eb;
  --stone:#d8d0c1;
  --ink:#143a2e;
  --sage:#5d7167;
  --deep:#0c3b2e;
  --line:rgba(20,58,46,.12);
}
html,body{
  height:100%;
  background:var(--ivory);
  color:var(--ink);
  font-family:'Montserrat',sans-serif;
  font-weight:300;
  -webkit-font-smoothing:antialiased;
}
body{
  display:flex;
  flex-direction:column;
  min-height:100vh;
}

/* HEADER */
.pp-header{
  position:sticky;
  top:0;
  z-index:100;
  background:var(--deep);
  padding:16px clamp(24px,6vw,80px);
  height:auto;
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.pp-logo{
  height:42px;
  width:auto;
  object-fit:contain;
}
.pp-back{
  font-size:9px;
  font-weight:500;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(242,237,230,.6);
  text-decoration:none;
  transition:color .2s;
}
.pp-back:hover{color:var(--ivory);}

/* HERO BAND */
.pp-hero{
  background:var(--deep);
  padding:clamp(48px,8vw,80px) clamp(24px,6vw,80px) clamp(40px,6vw,64px);
  border-bottom:0.5px solid rgba(255,255,255,.08);
}
.pp-eyebrow{
  font-size:9px;
  font-weight:500;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--sage);
  margin-bottom:16px;
}
.pp-hero-heading{
  font-size:clamp(2rem,5vw,4rem);
  font-weight:200;
  letter-spacing:-.02em;
  line-height:1.05;
  color:var(--ivory);
  margin-bottom:16px;
}
.pp-hero-date{
  font-size:10px;
  font-weight:300;
  letter-spacing:.1em;
  color:rgba(242,237,230,.4);
}

/* CONTENT */
.pp-content{
  flex:1;
  max-width:780px;
  width:100%;
  margin:0 auto;
  padding:clamp(48px,8vw,80px) clamp(24px,6vw,48px) clamp(64px,10vw,100px);
}

/* SECTION */
.pp-section{
  margin-bottom:clamp(36px,5vw,52px);
  padding-bottom:clamp(36px,5vw,52px);
  border-bottom:0.5px solid var(--line);
}
.pp-section:last-child{
  border-bottom:none;
  margin-bottom:0;
}
.pp-section-num{
  font-size:9px;
  font-weight:500;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--sage);
  margin-bottom:10px;
}
.pp-section h2{
  font-size:clamp(1rem,2.2vw,1.4rem);
  font-weight:400;
  letter-spacing:.01em;
  line-height:1.3;
  color:var(--ink);
  margin-bottom:16px;
}
.pp-section p{
  font-size:clamp(0.875rem,1.5vw,1rem);
  font-weight:300;
  line-height:1.85;
  color:#4a3e34;
}
.pp-section p + p{
  margin-top:12px;
}

/* FOOTER */
.pp-footer{
  background:var(--deep);
  padding:clamp(24px,4vw,36px) clamp(24px,6vw,80px);
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:12px;
}
.pp-footer-text{
  font-size:9px;
  font-weight:400;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(242,237,230,.3);
}
.pp-footer-link{
  font-size:9px;
  font-weight:400;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(242,237,230,.5);
  text-decoration:none;
  transition:color .2s;
}
.pp-footer-link:hover{color:var(--ivory);}

/* MOBILE */
@media(max-width:600px){
  .pp-header{height:auto;min-height:64px;padding:12px 24px;}
  .pp-logo{height:34px;width:auto;}
  .pp-footer{flex-direction:column;align-items:flex-start;gap:10px;}
}
