


.p-hero {
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
  padding: var(--space-2xl) var(--margin-inline);
}

.p-hero__eyebrow {
  font-family: var(--font-display);
  font-weight: var(--weight-display);
  font-size: var(--step-1);
  
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

.p-hero__title {
  
  line-height: 1.02;
  max-width: 22ch;
}

.p-hero__lede {
  font-size: var(--step-1);
  line-height: 1.35;
  max-width: 44ch;
}


.p-hero--split { display: grid; gap: var(--space-l); align-items: center; }
@media (min-width: 600px) {
  .p-hero--split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}


.p-prose > * + * { margin-top: var(--space-s); }
.p-prose h2, .p-prose h3, .p-prose h4 { max-width: 30ch; }
.p-prose p { max-width: var(--measure); }


.p-prose > p + :is(h2, h3, h4) { margin-top: var(--space-l); }


.p-quote {
  
  max-width: 34ch;
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
}

.p-quote blockquote p {
  font-family: var(--font-quote);
  font-weight: 700;
  font-size: var(--step-2);
  line-height: 1.25;
  max-width: none;
  
}


.p-quote--long { max-width: 46ch; }
.p-quote--long blockquote p {
  font-size: var(--step-1);
  line-height: 1.4;
}

.p-quote figcaption {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xs);
}

.p-quote__name {
  font-family: var(--font-quote);
  font-weight: var(--weight-display);
  font-size: var(--step-1);
}

.p-quote__title {
  font-size: var(--text-base);
  
  color: var(--text-muted);
  opacity: 1;
}
:is(.s-teal, .s-maroon, .s-ink, .s-gold, .s-taupe, .s-mint) .p-quote__title {
  color: inherit;
  
  font-weight: 400;
}


.p-stat {
  display: grid;
  gap: var(--space-l) var(--grid-gutter);
  grid-template-columns: repeat(auto-fit, minmax(min(14rem, 100%), 1fr));
}

.p-stat__item {
  display: flex;
  
  flex-direction: column;
  justify-content: flex-end;
  gap: var(--space-3xs);
}

.p-stat__value {
  font-family: var(--font-display);
  font-weight: var(--weight-display);
  font-size: var(--step-3);
  line-height: 1;
  
  font-variant-numeric: tabular-nums;
  
  min-width: 3ch;
}


.p-stat__value--word {
  font-size: var(--step-2);
  min-width: 0;
}

.p-stat__label {
  font-size: var(--text-base);
  line-height: 1.3;
  max-width: 24ch;
}


.p-stat--inline .p-stat__item {
  
  flex-direction: row-reverse;
  justify-content: flex-end;
  
  align-items: center;
  gap: var(--space-2xs) var(--space-s);
  flex-wrap: wrap;
}
.p-stat--inline .p-stat__value {
  flex: 0 0 auto;
  min-width: 0;
}
.p-stat--inline .p-stat__label {
  flex: 1 1 0;
  max-width: none;
}

@media (max-width: 799.98px) {
  .p-stat--inline .p-stat__value {
    min-width: 4.75rem;   
  }
}


.p-list {
  
  columns: 3 14rem;
  column-gap: var(--grid-gutter);
  font-size: var(--text-base);
}


.p-list--flat { columns: 1; }

.p-list > li {
  
  break-inside: avoid;
  margin-bottom: var(--space-2xs);
  padding-left: var(--space-s);
  position: relative;
}

.p-list > li::marker { content: none; }

.p-list > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35em;
  height: 0.35em;
  background: currentColor;
  
}

.p-list ul {
  list-style: none;
  margin-top: var(--space-3xs);
  padding-left: var(--space-s);
}

.p-list ul li {
  
  line-height: 1.35;
  position: relative;
  padding-left: var(--space-xs);
}

.p-list ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 0.4em;
  height: 1px;
  background: currentColor;
}


.p-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  font-family: var(--font-display);
  font-weight: var(--weight-display);
  font-size: var(--text-base);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  
  padding-block: var(--space-2xs);
  text-decoration: none;
}
.p-cta__text { text-decoration: none; }
.p-cta:hover .p-cta__text,
.p-cta:focus-visible .p-cta__text {
  text-decoration: underline;
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.3em;
}

.p-cta > [aria-hidden] {
  
  transition: transform 150ms ease-out;
}
.p-cta:hover > [aria-hidden] { transform: translateX(0.25em); }


@media (max-width: 599.98px) {
  .p-cta {
    display: inline;
    
    padding-block: var(--space-2xs);
  }
  .p-cta > [aria-hidden] {
    display: inline-block;
    
    margin-inline-start: var(--space-2xs);
  }
}


.p-steps {
  display: grid;
  gap: var(--space-l);
  counter-reset: step;
  grid-template-columns: repeat(auto-fit, minmax(min(16rem, 100%), 1fr));
}

.p-steps > li {
  counter-increment: step;
  display: flex;
  flex-direction: column;
  gap: var(--space-2xs);
}

.p-steps > li::before {
  content: counter(step);
  font-family: var(--font-display);
  font-weight: var(--weight-display);
  font-size: var(--step-2);
  line-height: 1;
  
  padding-bottom: var(--space-3xs);
  border-bottom: 2px solid currentColor;
  width: fit-content;
  min-width: 1.5em;
}


.p-cost {
  border-collapse: collapse;
  width: 100%;
  
  min-width: 30rem;
  font-variant-numeric: tabular-nums;
  text-align: left;
}

.p-cost caption {
  font-family: var(--font-display);
  font-weight: var(--weight-display);
  font-size: var(--step-1);
  text-align: left;
  padding-bottom: var(--space-s);
}

.p-cost :is(th, td) {
  padding: var(--space-2xs) var(--space-s);
  
  border-bottom: 1px solid currentColor;
  vertical-align: baseline;
}

.p-cost thead th {
  font-family: var(--font-display);
  font-weight: var(--weight-display);
  font-size: var(--text-base);
  text-transform: uppercase;
  border-bottom-width: 2px;
}

.p-cost tbody th { font-weight: 400; }

.p-cost td { font-family: var(--font-display); font-weight: var(--weight-display); }


.p-cost tbody tr:last-child :is(th, td) {
  border-bottom: none;
  font-size: var(--step-1);
}


.p-mark {
  display: inline-block;
  width: 1.15em;
  height: 0.9em;
  background: currentColor;
  vertical-align: middle;
}

.p-rule {
  border: none;
  border-top: 2px solid currentColor;
  
  margin-block: var(--space-l);
}




.p-dates {
  display: grid;
  
  grid-template-columns: max-content minmax(0, 1fr);
  gap: var(--space-2xs) var(--space-s);
}


@media (max-width: 26rem) {
  .p-dates { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .p-dates dd { margin-bottom: var(--space-s); }
}

.p-dates dt {
  font-family: var(--font-display);
  font-weight: var(--weight-display);
}


.p-callout {
  position: relative;
  border: 2px solid var(--c-gold);
  
  padding: var(--space-m) var(--space-s) var(--space-s);
  color: inherit;
  
  isolation: isolate;
}

.p-callout__label {
  position: absolute;
  top: 0;
  
  transform: translateY(-50%);
  z-index: 1;
  padding: 0 0.5em;
  margin: 0;
  
  background: var(--surface, var(--surface-paper));
  color: var(--c-gold);
  font-family: var(--font-display);
  font-weight: var(--weight-display);
  font-size: var(--text-base);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1;
  white-space: nowrap;
}

.p-callout__body {
  margin: 0;
  font-size: var(--text-base);
  line-height: var(--leading-body);
}




.p-callout .p-callout__label,
.p-callout[data-label-align="start"] .p-callout__label {
  left: var(--space-s);
}

.p-callout[data-label-align="center"] .p-callout__label {
  left: 50%;
  
  transform: translate(-50%, -50%);
}

.p-callout[data-label-align="end"] .p-callout__label {
  right: var(--space-s);
  left: auto;
}


.p-testimonial {
  display: grid;
  grid-template-columns: minmax(0, 1fr);   
  gap: var(--space-l);
  border: 3px solid var(--c-gold);
  padding: var(--space-l);
  margin: 0;
  max-width: none;
  background: transparent;
  align-items: start;
}
@media (min-width: 700px) {
  .p-testimonial {
    
    grid-template-columns: minmax(0, 12rem) minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: var(--space-xl);
    row-gap: var(--space-m);
    align-items: stretch;
  }
  
  .p-testimonial__portrait {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: stretch;
  }
  .p-testimonial__body        { grid-column: 2; grid-row: 1; }
  .p-testimonial__attribution { grid-column: 2; grid-row: 2; }
}


@media (min-width: 700px) {
  .p-testimonial--portrait-right {
    grid-template-columns: minmax(0, 1fr) minmax(0, 12rem);
  }
  .p-testimonial--portrait-right .p-testimonial__portrait {
    grid-column: 2;
  }
  .p-testimonial--portrait-right .p-testimonial__body        { grid-column: 1; }
  .p-testimonial--portrait-right .p-testimonial__attribution { grid-column: 1; }
}


@media (max-width: 599.98px) {
  .p-testimonial { padding: var(--space-m); }
}




.p-testimonial__portrait {
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
}
.p-testimonial__portrait picture,
.p-testimonial__portrait img {
  display: block;
  width: 100%;
  height: 100%;
}
.p-testimonial__portrait img {
  aspect-ratio: 2 / 3;                     
  object-fit: cover;
  object-position: 50% 30%;                
}




.p-testimonial__body {
  margin: 0;
  padding: 0;
  max-width: none;
  color: currentColor;                     
  font-family: var(--font-body);
  
  font-size: 1.125rem;
  line-height: 1.55;
  font-weight: 400;
}
.p-testimonial__body p {
  margin: 0;
  max-width: none;
}
.p-testimonial__body > p + p { margin-top: 0.6em; }


.p-testimonial__mark {
  display: block;
  font-family: var(--font-quote, "Lora"), Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: var(--step-4);
  line-height: 0.7;                        
  margin-bottom: 0.1em;
  user-select: none;                       
}



.p-testimonial__attribution {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xs);
  max-width: none;
}
.p-testimonial__name {
  font-family: var(--font-quote, "Lora"), Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: var(--step-1);
  line-height: 1.15;
  color: currentColor;
}
.p-testimonial__role {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.25;
}

:is(.s-teal, .s-maroon, .s-ink, .s-gold, .s-taupe, .s-mint) .p-testimonial__role {
  color: inherit;
  opacity: 1;
  font-weight: 400;
}
