:root {
  --pp-ground: #F3EEE5;
  --pp-text: #3A241C;
  --pp-muted: #8A7768;
  --pp-line: #D8CBBB;
  --pp-accent: #8FA082;
  --pp-display: Iowan Old Style, Palatino Linotype, Palatino, Georgia, serif;
  --pp-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --pp-max: 1180px;
  --pp-gutter: clamp(1rem, 3vw, 2.4rem);
  --pp-progress-value: 0%;
}

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

html {
  background: var(--pp-ground);
  color: var(--pp-text);
  font-family: var(--pp-body);
  font-size: 16px;
  line-height: 1.55;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(216, 203, 187, .42) 1px, transparent 1px) 0 0 / clamp(4.5rem, 9vw, 8rem) 100%,
    var(--pp-ground);
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: .22em;
}

p,
h1,
h2,
h3,
dl,
dd,
ul,
ol {
  margin-top: 0;
}

p,
li,
dd {
  overflow-wrap: anywhere;
}

.pp-skip {
  position: absolute;
  left: 1rem;
  top: .75rem;
  z-index: 20;
  transform: translateY(-160%);
  padding: .65rem .9rem;
  background: var(--pp-text);
  color: var(--pp-ground);
  text-decoration: none;
  transition: transform .25s ease;
}

.pp-skip:focus {
  transform: translateY(0);
}

.pp-header {
  width: min(var(--pp-max), calc(100% - var(--pp-gutter) * 2));
  margin: 0 auto;
  padding: clamp(1.1rem, 2.5vw, 1.8rem) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--pp-line);
}

.pp-brand {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  text-decoration: none;
  min-width: 0;
}

.pp-brand-mark {
  display: grid;
  place-items: center;
  inline-size: 2.65rem;
  block-size: 2.65rem;
  border: 1px solid var(--pp-text);
  border-radius: 50%;
  font-family: var(--pp-display);
  font-size: .92rem;
}

.pp-brand-name {
  display: block;
  font-family: var(--pp-display);
  font-size: 1.22rem;
  line-height: 1.05;
}

.pp-brand-line {
  display: block;
  color: var(--pp-muted);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pp-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .35rem clamp(.65rem, 1.7vw, 1.3rem);
  min-width: 0;
}

.pp-nav a {
  position: relative;
  padding: .25rem 0;
  color: var(--pp-muted);
  font-size: .92rem;
  text-decoration: none;
  transition: color .22s ease;
}

.pp-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--pp-accent);
  transition: right .25s ease;
}

.pp-nav a:hover,
.pp-nav a:focus-visible,
.pp-nav a[aria-current="page"] {
  color: var(--pp-text);
}

.pp-nav a:hover::after,
.pp-nav a:focus-visible::after,
.pp-nav a[aria-current="page"]::after {
  right: 0;
}

.pp-hero {
  width: min(var(--pp-max), calc(100% - var(--pp-gutter) * 2));
  margin: 0 auto;
  padding: clamp(4.8rem, 11vw, 8.8rem) 0 clamp(3.2rem, 7vw, 6.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: end;
  text-align: center;
}

.pp-hero-home {
  grid-template-columns: minmax(0, .98fr) minmax(18rem, .72fr);
  text-align: left;
}

.pp-hero-page {
  padding: clamp(3.4rem, 7vw, 5.8rem) 0 clamp(1.8rem, 4vw, 3.3rem);
}

.pp-hero-page:has(.pp-hero-panel) {
  grid-template-columns: minmax(0, .98fr) minmax(16rem, .62fr);
  align-items: center;
  text-align: left;
}

.pp-hero-inner {
  min-width: 0;
}

.pp-kicker,
.pp-section-label,
.pp-rail-label,
.pp-card-label {
  margin-bottom: 1rem;
  color: var(--pp-muted);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  line-height: 1.25;
  text-transform: uppercase;
}

.pp-display {
  margin-bottom: clamp(1.2rem, 2.4vw, 1.9rem);
  font-family: var(--pp-display);
  font-size: clamp(3.35rem, 10.2vw, 5.8rem);
  font-weight: 400;
  line-height: .91;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.pp-hero-page .pp-display {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.pp-hero-page:has(.pp-hero-panel) .pp-display {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.pp-hero-copy {
  max-width: 64ch;
  margin-bottom: 0;
  color: var(--pp-muted);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.pp-hero:not(.pp-hero-home) .pp-hero-copy {
  margin-left: auto;
  margin-right: auto;
}

.pp-hero-page:has(.pp-hero-panel) .pp-hero-copy {
  margin-left: 0;
  margin-right: 0;
}

.pp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem 1.3rem;
  align-items: center;
  margin-top: 2rem;
}

.pp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: .78rem 1.05rem .82rem;
  border: 1px solid var(--pp-text);
  color: var(--pp-text);
  background: transparent;
  font-weight: 600;
  line-height: 1.1;
  text-decoration: none;
  transition: color .2s ease, border-color .2s ease, transform .2s ease;
}

.pp-button:hover,
.pp-button:focus-visible {
  color: var(--pp-accent);
  border-color: var(--pp-accent);
  transform: translateX(3px);
}

.pp-text-link {
  color: var(--pp-muted);
  font-weight: 600;
  text-decoration-color: var(--pp-accent);
  transition: color .2s ease;
}

.pp-text-link:hover,
.pp-text-link:focus-visible {
  color: var(--pp-text);
}

.pp-hero-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--pp-line);
  min-width: 0;
}

.pp-hero-panel::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(216, 203, 187, .8);
  pointer-events: none;
}

.pp-yard-svg {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1.95 / 1;
  transform-origin: 50% 50%;
}

.pp-js .pp-hero-panel .pp-yard-svg {
  animation: pp-drift 18s ease-in-out infinite alternate;
}

.pp-page-shell {
  width: min(var(--pp-max), calc(100% - var(--pp-gutter) * 2));
  margin: 0 auto clamp(4rem, 8vw, 7rem);
  display: grid;
  grid-template-columns: minmax(13rem, 17rem) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5.6rem);
  align-items: start;
}

.pp-rail {
  min-width: 0;
}

.pp-rail-stick {
  position: sticky;
  top: 1rem;
  padding-top: .4rem;
}

.pp-measure {
  display: block;
  width: 100%;
  height: auto;
  margin: .2rem 0 1.4rem;
  border-top: 1px solid var(--pp-line);
  border-bottom: 1px solid var(--pp-line);
}

.pp-progress {
  height: 7rem;
  width: 1px;
  margin: 0 0 1.3rem .15rem;
  background: var(--pp-line);
}

.pp-progress span {
  display: block;
  width: 1px;
  height: var(--pp-progress-value);
  background: var(--pp-accent);
  transition: height .35s ease;
}

.pp-facts {
  display: grid;
  gap: 0;
  margin-bottom: 0;
  border-top: 1px solid var(--pp-line);
}

.pp-facts div {
  padding: .95rem 0;
  border-bottom: 1px solid var(--pp-line);
}

.pp-facts dt {
  margin-bottom: .22rem;
  color: var(--pp-muted);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.pp-facts dd {
  margin-left: 0;
  font-size: .92rem;
}

.pp-facts a,
.pp-rail-note a {
  color: var(--pp-text);
  text-decoration-color: var(--pp-accent);
}

.pp-mini-flow {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: flow;
  border-top: 1px solid var(--pp-line);
}

.pp-mini-flow li {
  counter-increment: flow;
  padding: .75rem 0;
  border-bottom: 1px solid var(--pp-line);
  font-size: .92rem;
}

.pp-mini-flow li::before {
  content: counter(flow, decimal-leading-zero);
  margin-right: .75rem;
  color: var(--pp-muted);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
}

.pp-rail-note {
  margin: 1rem 0 0;
  color: var(--pp-muted);
  font-size: .92rem;
}

.pp-content {
  min-width: 0;
}

.pp-section {
  padding: clamp(3rem, 7vw, 6.2rem) 0;
  border-top: 1px solid var(--pp-line);
}

.pp-content > .pp-section:first-child {
  padding-top: .35rem;
  border-top: 0;
}

.pp-section-head {
  max-width: 720px;
  margin-bottom: clamp(1.7rem, 3.5vw, 2.8rem);
}

.pp-section h2,
.pp-contact-panel h2 {
  margin-bottom: 1.15rem;
  font-family: var(--pp-display);
  font-size: clamp(2.05rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.pp-section h3 {
  margin-bottom: .7rem;
  font-family: var(--pp-display);
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.02em;
  text-wrap: balance;
}

.pp-copy-large {
  max-width: 75ch;
  color: var(--pp-text);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
}

.pp-copy-large p:last-child,
.pp-columns p:last-child,
.pp-feature p:last-child {
  margin-bottom: 0;
}

.pp-columns {
  column-count: 2;
  column-gap: clamp(2rem, 5vw, 4rem);
  max-width: 84ch;
  color: var(--pp-text);
  font-size: 1rem;
}

.pp-columns p {
  break-inside: avoid;
  margin-bottom: 1.1rem;
}

.pp-card-grid {
  display: grid;
  gap: 1px;
  background: var(--pp-line);
  border: 1px solid var(--pp-line);
}

.pp-card-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pp-stretch {
  align-items: stretch;
}

.pp-service {
  display: flex;
  min-width: 0;
  min-height: 24rem;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  background: var(--pp-ground);
}

.pp-service p {
  color: var(--pp-muted);
}

.pp-card-note {
  margin: auto 0 1.35rem;
  padding-top: 1.35rem;
  color: var(--pp-text) !important;
  font-size: .92rem;
}

.pp-card-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  align-self: flex-start;
  color: var(--pp-text);
  font-weight: 600;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}

.pp-card-link span {
  color: var(--pp-accent);
  transition: transform .2s ease;
}

.pp-card-link:hover,
.pp-card-link:focus-visible {
  color: var(--pp-accent);
  transform: translateX(4px);
}

.pp-card-link:hover span,
.pp-card-link:focus-visible span {
  transform: translateX(3px);
}

.pp-feature {
  padding: clamp(2rem, 4.5vw, 3.5rem);
  border: 1px solid var(--pp-line);
  text-align: center;
}

.pp-feature .pp-columns,
.pp-feature p:not(.pp-section-label) {
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.pp-feature > p:not(.pp-section-label) {
  max-width: 74ch;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
}

.pp-list {
  max-width: 900px;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--pp-line);
}

.pp-list li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(10rem, .42fr) minmax(0, 1fr);
  gap: 1rem;
  padding: 1.15rem 0 1.18rem 1.2rem;
  border-bottom: 1px solid var(--pp-line);
  transition: transform .2s ease;
}

.pp-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.75rem;
  width: .42rem;
  height: .42rem;
  border: 1px solid var(--pp-accent);
  transform: rotate(45deg);
  transition: border-color .2s ease, transform .2s ease;
}

.pp-list li:hover {
  transform: translateX(5px);
}

.pp-list li:hover::before {
  border-color: var(--pp-text);
  transform: rotate(45deg) scale(1.2);
}

.pp-list span {
  font-weight: 600;
  color: var(--pp-text);
  transition: color .2s ease;
}

.pp-list small {
  color: var(--pp-muted);
  font-size: .92rem;
  transition: color .2s ease;
}

.pp-list li:hover span,
.pp-list li:hover small {
  color: var(--pp-text);
}

.pp-step-list {
  display: grid;
  border-top: 1px solid var(--pp-line);
}

.pp-step {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2.4rem);
  padding: clamp(1.3rem, 3vw, 2.1rem) 0;
  border-bottom: 1px solid var(--pp-line);
}

.pp-step > span {
  color: var(--pp-muted);
  font-family: var(--pp-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: .9;
}

.pp-step p {
  max-width: 70ch;
  margin-bottom: 0;
  color: var(--pp-muted);
}

.pp-contact-panel {
  margin-top: clamp(1rem, 3vw, 2.4rem);
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--pp-text);
  text-align: center;
}

.pp-contact-panel p:not(.pp-section-label) {
  max-width: 66ch;
  margin-left: auto;
  margin-right: auto;
  color: var(--pp-muted);
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
}

.pp-contact-panel .pp-button {
  margin-top: .7rem;
}

.pp-muted {
  color: var(--pp-muted) !important;
}

.pp-area-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1rem;
  margin-top: 2rem;
  max-width: 760px;
}

.pp-area-cloud span {
  padding-bottom: .2rem;
  border-bottom: 1px solid var(--pp-line);
  color: var(--pp-muted);
  font-size: .92rem;
  transition: color .2s ease, border-color .2s ease, transform .2s ease;
}

.pp-area-cloud span:hover {
  color: var(--pp-text);
  border-color: var(--pp-accent);
  transform: translateX(3px);
}

.pp-footer {
  width: min(var(--pp-max), calc(100% - var(--pp-gutter) * 2));
  margin: 0 auto;
  padding: 2rem 0 2.4rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--pp-line);
  color: var(--pp-muted);
  font-size: .92rem;
}

.pp-footer p {
  margin-bottom: 0;
}

.pp-footer a {
  color: var(--pp-text);
  text-decoration-color: var(--pp-accent);
}

.pp-js .pp-reveal.pp-is-hidden {
  opacity: 1;
  transform: translateY(18px);
}

.pp-js .pp-reveal {
  opacity: 1;
  transform: none;
  transition: opacity .7s ease, transform .7s ease;
}

.pp-js .pp-wipe {
  clip-path: inset(0 0 0 0);
  animation: pp-wipe 1.25s cubic-bezier(.19, 1, .22, 1) .12s forwards;
}

@keyframes pp-wipe {
  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes pp-drift {
  from {
    transform: scale(1.02) translate3d(-.8%, .6%, 0);
  }
  to {
    transform: scale(1.08) translate3d(1%, -1%, 0);
  }
}

@media (max-width: 920px) {
  .pp-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .pp-nav {
    justify-content: flex-start;
  }

  .pp-hero-home {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
  }

  .pp-hero-page:has(.pp-hero-panel) {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
  }

  .pp-hero-page:has(.pp-hero-panel) .pp-display,
  .pp-hero-page:has(.pp-hero-panel) .pp-hero-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .pp-hero-home .pp-hero-copy,
  .pp-hero-home .pp-hero-actions {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .pp-page-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .pp-rail-stick {
    position: relative;
    top: auto;
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: 1rem 1.4rem;
    padding: 1rem 0 2rem;
    border-top: 1px solid var(--pp-line);
    border-bottom: 1px solid var(--pp-line);
  }

  .pp-rail-label,
  .pp-measure,
  .pp-progress {
    grid-column: 1;
  }

  .pp-facts,
  .pp-mini-flow,
  .pp-rail-note {
    grid-column: 2;
  }

  .pp-progress {
    display: none;
  }

  .pp-content > .pp-section:first-child {
    padding-top: clamp(2rem, 6vw, 4rem);
  }

  .pp-card-grid-three {
    grid-template-columns: minmax(0, 1fr);
  }

  .pp-service {
    min-height: 18rem;
  }
}

@media (max-width: 680px) {
  .pp-brand-line {
    white-space: normal;
  }

  .pp-display {
    font-size: clamp(2.75rem, 15vw, 4rem);
  }

  .pp-hero {
    padding-top: 3.4rem;
  }

  .pp-rail-stick {
    display: block;
  }

  .pp-measure {
    max-width: 22rem;
  }

  .pp-columns {
    column-count: 1;
  }

  .pp-list li {
    grid-template-columns: minmax(0, 1fr);
    gap: .25rem;
  }

  .pp-step {
    grid-template-columns: minmax(0, 1fr);
    gap: .75rem;
  }

  .pp-footer {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .pp-nav {
    gap: .25rem .8rem;
  }

  .pp-hero-panel::before {
    inset: .6rem;
  }

  .pp-contact-panel,
  .pp-feature {
    padding: 1.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  .pp-js .pp-reveal.pp-is-hidden {
    opacity: 1;
    transform: none;
  }

  .pp-js .pp-wipe {
    clip-path: none;
  }
}