/**
 * Alaska Skydive Center — standalone site.
 * Real photos: /site-assets/*.jpg from ./public/ (git-tracked; optional sync from platform-py).
 * If a file is missing, <img onerror> removes or hides it and gradients show.
 */
:root {
  --ps-dark: #0b1220;
  --ps-slate: #151d2e;
  --ps-accent: #e07800;
  --ps-accent-hover: #c96a00;
  --ps-ice: #8dcce8;
  --ps-ice-dark: #5eb0d4;
  --ps-text: #f1f5f9;
  --ps-muted: rgba(241, 245, 249, 0.72);
  --ps-border: rgba(255, 255, 255, 0.12);
  --ps-bar: linear-gradient(90deg, #b91c1c, #fff 50%, #1d4ed8);
  /* Light band (home tiles + stats + welcome) — like legacy public site */
  --ps-light-bg: #e8ecf0;
  --ps-light-panel: #f4f6f8;
  --ps-light-text: #0f172a;
  --ps-light-muted: #475569;
  /* Match Dropbox alaska_skydive_hero.html (infobar + strip + hero accent) */
  --ps-strip-bg: #050c1e;
  --ps-stats-sky: #94b7ea;
  --ps-stats-sky-border: rgba(255, 255, 255, 0.45);
  --ps-stats-text: #050c1e;
  --ps-stats-muted: rgba(5, 12, 30, 0.72);
  --ps-hero-sky: #94b7ea;
  --ps-hero-sky-hover: #7da8e0;
}

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

body.ps-body--home {
  overflow-x: hidden;
}

.ps-body {
  margin: 0;
  min-height: 100vh;
  font-family: "Source Sans 3", system-ui, -apple-system, sans-serif;
  background: var(--ps-dark);
  color: var(--ps-text);
}
.ps-body a { color: var(--ps-ice); }

.ps-top {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 18, 32, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ps-border);
}
.ps-top::before {
  content: "";
  display: block;
  height: 4px;
  background: var(--ps-bar);
}
.ps-top__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.ps-brand {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: #fff !important;
  text-decoration: none !important;
}
.ps-brand:hover { color: var(--ps-ice) !important; }
.ps-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
}
.ps-nav a {
  color: var(--ps-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}
.ps-nav a:hover { color: #fff; }
.ps-nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 8px;
  background: var(--ps-accent);
  color: #0b1220 !important;
  font-weight: 700;
  text-decoration: none !important;
}
.ps-nav__cta:hover {
  background: var(--ps-accent-hover);
  color: #0b1220 !important;
}

/* Hero: optional photo (hero-main.jpg) under gradient scrim — full viewport width */
.ps-hero-full {
  position: relative;
  min-height: min(88vh, 900px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 20px 56px;
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.ps-hero-full__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 0;
}
.ps-hero-full__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: #1a2744;
  background-image: var(
    --ps-hero-bg,
    linear-gradient(165deg, rgba(30, 74, 120, 0.9) 0%, rgba(11, 18, 32, 0.96) 42%, rgba(12, 74, 110, 0.85) 100%)
  );
  background-size: cover;
  background-position: center 40%;
}
.ps-hero-full--has-photo .ps-hero-full__bg {
  background-color: transparent;
  background-image: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.05) 0%,
    transparent 35%,
    transparent 55%,
    rgba(15, 23, 42, 0.15) 100%
  );
}
.ps-hero-full__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  /* Darker bottom ~third so headline + CTAs pop like the reference comp */
  background: linear-gradient(
    to top,
    rgba(11, 18, 32, 0.88) 0%,
    rgba(11, 18, 32, 0.5) 28%,
    rgba(11, 18, 32, 0.12) 58%,
    transparent 100%
  );
}
.ps-hero-full__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
/* Palmer: true top-center of hero. Pioneer: right third over peaks; leader to top-right corner (annotated comp) */
.ps-hero-full__meta {
  position: absolute;
  z-index: 3;
  left: 50%;
  transform: translateX(-50%);
  top: clamp(1rem, 5vh, 2.5rem);
  width: 100%;
  max-width: min(100%, 1200px);
  padding: 0 20px;
  box-sizing: border-box;
  text-align: center;
  pointer-events: none;
}
.ps-hero-full__peak-wrap {
  position: absolute;
  z-index: 3;
  /* Right side over mountain band (user sketch), not flush with title column */
  top: clamp(16%, 22vh, 220px);
  right: clamp(1rem, 5vw, 3.5rem);
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  pointer-events: none;
}
.ps-hero-full__peak-leader {
  position: absolute;
  right: 25%;
  bottom: calc(100% + 6px);
  width: 2px;
  /* Longer reach from mid-right badge up toward hero top-right */
  height: clamp(160px, 42vh, 420px);
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 1px;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.72),
    rgba(255, 255, 255, 0.3) 45%,
    rgba(255, 255, 255, 0.08)
  );
  transform-origin: bottom center;
  transform: rotate(18deg);
  pointer-events: none;
  z-index: 0;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.12);
}
.ps-hero-full__peak-leader::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  width: 7px;
  height: 7px;
  margin-left: -3.5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.35);
}
@media (max-width: 720px) {
  .ps-hero-full__meta {
    top: clamp(0.75rem, 3vh, 1.5rem);
    padding: 0 14px;
  }
  .ps-hero-full__peak-wrap {
    top: clamp(18%, 24vh, 200px);
    right: clamp(0.75rem, 4vw, 2rem);
    align-items: flex-end;
    pointer-events: none;
  }
  .ps-hero-full__peak-leader {
    height: clamp(100px, 28vh, 240px);
    right: 22%;
    transform: rotate(22deg);
    transform-origin: bottom center;
  }
}
@media (max-width: 400px) {
  .ps-hero-full__peak-leader {
    height: clamp(80px, 22vh, 180px);
    transform: rotate(26deg);
    transform-origin: bottom center;
  }
}
.ps-hero-full__peak-badge {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 7px 12px;
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  pointer-events: auto;
}
.ps-hero-full__eyebrow {
  display: inline-block;
  margin: 0 auto;
  max-width: min(100%, 34rem);
  text-align: center;
  pointer-events: auto;
  padding: 0.45rem 1.15rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #e8f0ff;
}
.ps-hero-full__title {
  margin: 0 0 0.85rem;
  font-family: "Bebas Neue", "Barlow Condensed", impact, system-ui, sans-serif;
  font-weight: 400;
  line-height: 0.82;
  text-transform: none;
  letter-spacing: 0.03em;
  font-size: clamp(4rem, 12vw, 10rem);
  color: #fff;
}
.ps-hero-full__title--stacked {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.ps-hero-full__title-line {
  display: block;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45), 0 4px 40px rgba(0, 0, 0, 0.35);
}
.ps-hero-full__title-line + .ps-hero-full__title-line {
  margin-top: -0.035em;
}
.ps-hero-full__title-line--accent {
  color: var(--ps-hero-sky);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5), 0 0 40px rgba(102, 191, 255, 0.25);
}
.ps-hero-full__sub {
  margin: 0 0 2rem;
  font-family: "Barlow", "Source Sans 3", system-ui, sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(220, 235, 255, 0.85);
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.45;
}
.ps-hero-full__cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 18px;
}
.ps-hero-full__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 2.5rem;
  border-radius: 2px;
  background: var(--ps-hero-sky);
  color: #050c1e !important;
  font-family: "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none !important;
  border: none;
  transition: background 0.2s, transform 0.15s;
}
.ps-hero-full__cta:hover {
  transform: translateY(-2px);
}
.ps-hero-full__cta:not(.ps-hero-full__cta--ghost):hover {
  background: var(--ps-hero-sky-hover);
  color: #050c1e !important;
}
.ps-hero-full__cta--ghost {
  background: transparent !important;
  color: #fff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  transition: border-color 0.2s, transform 0.15s, background 0.2s;
}
.ps-hero-full__cta--ghost:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
  border-color: #fff;
}

/* Home: flush photo strip + stats — edge-to-edge (no max-width card, no side gutters) */
.ps-home-band {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0;
  background: var(--ps-dark);
}
.ps-home-band__shell {
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}
.ps-body--home .ps-tiles {
  padding: 0;
  background: transparent;
}
.ps-tiles {
  padding: 48px 20px 56px;
  background: var(--ps-dark);
}
.ps-tiles__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
/* Home: four abreast, zero gap — continuous strip */
.ps-body--home .ps-tiles__inner {
  max-width: none;
  margin: 0;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 900px) {
  .ps-tiles__inner { grid-template-columns: repeat(2, 1fr); }
  .ps-body--home .ps-tiles__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 480px) {
  .ps-tiles__inner { grid-template-columns: 1fr; }
  .ps-body--home .ps-tiles__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* Narrow phones: one column, full-width cells */
@media (max-width: 520px) {
  .ps-body--home .ps-tiles__inner {
    grid-template-columns: 1fr;
  }
  .ps-body--home .ps-tile {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    aspect-ratio: 16 / 10;
  }
  .ps-body--home .ps-tile:last-child {
    border-bottom: none;
  }
}
.ps-body--home .ps-tile {
  border: none;
  border-radius: 0;
  box-shadow: none;
}
/* Desktop row: vertical lines only between the four photos */
@media (min-width: 901px) {
  .ps-body--home .ps-tile:not(:nth-child(4n)) {
    border-right: 1px solid rgba(255, 255, 255, 0.22);
  }
}
/* Tablet / narrow: 2×2 grid — separators between cells */
@media (max-width: 900px) {
  .ps-body--home .ps-tile {
    border-right: none;
    border-bottom: none;
  }
  .ps-body--home .ps-tile:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.22);
  }
  .ps-body--home .ps-tile:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
}
.ps-tile {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none !important;
  border: 1px solid var(--ps-border);
}
/* Pic 2: slightly squarer cells on large screens */
@media (min-width: 901px) {
  .ps-body--home .ps-tile {
    aspect-ratio: 1 / 1;
  }
}
@media (max-width: 900px) {
  .ps-body--home .ps-tile {
    aspect-ratio: 1 / 1;
  }
}
@media (max-width: 480px) {
  .ps-body--home .ps-tile {
    aspect-ratio: 4 / 5;
  }
}
/* Dropbox hero: asymmetric strip, fixed height, narrow gutters */
@media (min-width: 901px) {
  .ps-body--home .ps-home-band .ps-tiles__inner {
    grid-template-columns: 1fr 1.6fr 1fr 1fr;
    gap: 3px;
    height: 340px;
    background: var(--ps-strip-bg);
  }
  .ps-body--home .ps-home-band .ps-tile {
    aspect-ratio: unset;
    height: 100%;
    min-height: 0;
  }
  .ps-body--home .ps-home-band .ps-tile__photo {
    filter: brightness(0.88) saturate(1.08);
  }
}
.ps-tile__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.ps-tile__fill {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--tile-grad);
  transition: transform 0.35s ease, filter 0.35s ease;
}
.ps-tile--has-photo .ps-tile__fill {
  background: linear-gradient(to top, rgba(15, 23, 42, 0.72) 0%, rgba(15, 23, 42, 0.12) 55%, transparent 82%);
}
.ps-body--home .ps-tile--has-photo .ps-tile__fill {
  background: linear-gradient(to top, rgba(15, 23, 42, 0.58) 0%, rgba(15, 23, 42, 0.08) 58%, transparent 85%);
}
.ps-tile:hover .ps-tile__fill {
  transform: scale(1.04);
  filter: brightness(1.08);
}
.ps-body--home .ps-tile:hover .ps-tile__fill {
  transform: none;
  filter: brightness(1.06);
}
.ps-body--home .ps-tile:hover .ps-tile__photo {
  transform: scale(1.03);
  transition: transform 0.45s ease;
}
.ps-body--home .ps-tile .ps-tile__photo {
  transition: transform 0.45s ease;
}
/* Fallback tiles (no photo yet): brighter glacier/sky fills */
.ps-body--home .ps-tile--tandem { --tile-grad: linear-gradient(165deg, #bae6fd 0%, #e0f2fe 45%, #38bdf8 100%); }
.ps-body--home .ps-tile--door { --tile-grad: linear-gradient(165deg, #c7d2fe 0%, #eef2ff 45%, #818cf8 100%); }
.ps-body--home .ps-tile--canopy { --tile-grad: linear-gradient(165deg, #99f6e4 0%, #ecfdf5 45%, #2dd4bf 100%); }
.ps-body--home .ps-tile--learn { --tile-grad: linear-gradient(165deg, #fde68a 0%, #fffbeb 48%, #fbbf24 100%); }
.ps-tile--tandem { --tile-grad: linear-gradient(160deg, #1e4976 0%, #0f172a 50%, #0369a1 100%); }
.ps-tile--door { --tile-grad: linear-gradient(160deg, #3730a3 0%, #0f172a 50%, #4f46e5 100%); }
.ps-tile--canopy { --tile-grad: linear-gradient(160deg, #115e59 0%, #0f172a 50%, #0d9488 100%); }
.ps-tile--learn { --tile-grad: linear-gradient(160deg, #78350f 0%, #0f172a 55%, #d97706 100%); }
.ps-tile__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 14px 20px;
  background: linear-gradient(transparent, rgba(11, 18, 32, 0.88));
  color: #fff;
  font-weight: 800;
  font-size: clamp(0.95rem, 2.1vw, 1.2rem);
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-align: center;
  z-index: 2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45), 0 1px 2px rgba(0, 0, 0, 0.6);
}
.ps-body--home .ps-tile:not(.ps-tile--has-photo) .ps-tile__cap {
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.92));
  color: var(--ps-light-text);
  text-shadow: none;
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  padding-bottom: 22px;
}
.ps-body--home .ps-tile--has-photo .ps-tile__cap {
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: clamp(0.82rem, 2.2vw, 1.15rem);
  letter-spacing: 0.16em;
  padding: 20px 10px 22px;
  font-weight: 800;
}

/* Stats bar — Dropbox .infobar: centered row, intrinsic cells; pic2: tight num/label, vertically centered */
.ps-home-stats {
  background: var(--ps-stats-sky);
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: clamp(5.5rem, 12vw, 6.75rem);
}
.ps-body--home .ps-home-stats {
  border-top: none;
}
.ps-home-stats__inner {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 0;
  width: 100%;
  max-width: 1200px;
  padding: 0.85rem 16px;
  box-sizing: border-box;
}
.ps-body--home .ps-home-stats__inner {
  max-width: min(1200px, 100%);
}
.ps-home-stats__cell {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.35rem 2rem;
  border-right: 1px solid var(--ps-stats-sky-border);
}
.ps-home-stats__cell:last-child {
  border-right: none;
}
.ps-home-stats__value {
  display: block;
  font-family: "Bebas Neue", impact, system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(1.85rem, 5vw, 2.2rem);
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--ps-stats-text);
  line-height: 0.92;
}
.ps-home-stats__label {
  display: block;
  margin-top: 0;
  padding-top: 1px;
  font-family: "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  font-size: clamp(0.62rem, 2vw, 0.7rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ps-stats-muted);
  line-height: 1.12;
  max-width: 14rem;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .ps-body--home .ps-home-stats__inner {
    max-width: min(32rem, 100%);
  }
  .ps-home-stats__inner {
    padding: 0.75rem 12px;
  }
  .ps-home-stats__cell {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0.45rem 1.1rem;
    box-sizing: border-box;
  }
  .ps-home-stats__cell:nth-child(2) {
    border-right: none;
  }
  .ps-home-stats__cell:nth-child(1),
  .ps-home-stats__cell:nth-child(2) {
    border-bottom: 1px solid var(--ps-stats-sky-border);
  }
  .ps-home-stats__cell:nth-child(3) {
    border-right: 1px solid var(--ps-stats-sky-border);
  }
}
@media (max-width: 520px) {
  .ps-body--home .ps-home-stats__inner {
    max-width: 100%;
  }
  .ps-home-stats__cell {
    flex: 0 0 100%;
    max-width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--ps-stats-sky-border);
  }
  .ps-home-stats__cell:last-child {
    border-bottom: none;
  }
}
@media (max-width: 480px) {
  .ps-home-stats__label {
    max-width: 9.5rem;
  }
}

.ps-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px 48px;
}
.ps-section__head h2 {
  margin: 0 0 6px;
  font-size: 1.5rem;
}
.ps-section__head p {
  margin: 0 0 20px;
  color: var(--ps-muted);
  font-size: 1rem;
}
.ps-about-section,
.ps-asp-section { padding-bottom: 40px; }
.ps-about-prose p,
.ps-asp-prose {
  color: var(--ps-muted);
  line-height: 1.65;
}
.ps-about-cta-row,
.ps-asp-cta-row {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.ps-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none !important;
}
.ps-btn--primary {
  background: var(--ps-accent);
  color: #0b1220 !important;
}
.ps-btn--primary:hover {
  background: var(--ps-accent-hover);
  color: #0b1220 !important;
}
.ps-btn--ghost {
  background: transparent;
  color: var(--ps-ice) !important;
  border: 1px solid var(--ps-border);
}
.ps-btn--ghost:hover {
  border-color: var(--ps-ice);
  color: #fff !important;
}
.ps-body--home .ps-home-welcome .ps-btn--ghost,
.ps-body--home .ps-home-services .ps-btn--ghost,
.ps-body--home .ps-home-gift .ps-btn--ghost {
  color: var(--ps-light-text) !important;
  border-color: rgba(15, 23, 42, 0.25);
}
.ps-body--home .ps-home-welcome .ps-btn--ghost:hover,
.ps-body--home .ps-home-services .ps-btn--ghost:hover,
.ps-body--home .ps-home-gift .ps-btn--ghost:hover {
  border-color: #0369a1;
  color: #0369a1 !important;
}
.ps-about-section--letter {
  background: var(--ps-slate);
  border-radius: 12px;
  padding: 32px 28px;
  border: 1px solid var(--ps-border);
}
.ps-owner-letter p {
  color: var(--ps-muted);
  line-height: 1.65;
}
.ps-owner-letter__signoff {
  margin-top: 1.5rem;
  color: var(--ps-text) !important;
}
.ps-about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.ps-about-gallery-item {
  position: relative;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--ps-border);
  min-height: 180px;
  background: var(--gal-grad);
}
.ps-about-gallery-item img {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}
.ps-about-gallery-item--1 { --gal-grad: linear-gradient(145deg, #1e3a5f, #0f172a); }
.ps-about-gallery-item--2 { --gal-grad: linear-gradient(145deg, #312e81, #0f172a); }
.ps-about-gallery-item--3 { --gal-grad: linear-gradient(145deg, #134e4a, #0f172a); }
.ps-about-gallery-item--4 { --gal-grad: linear-gradient(145deg, #713f12, #0f172a); }

.ps-asp-callout {
  background: rgba(141, 204, 232, 0.08);
  border: 1px solid rgba(141, 204, 232, 0.25);
  border-radius: 12px;
  padding: 24px;
}
.ps-asp-callout__title { margin: 0 0 8px; font-size: 1.2rem; }
.ps-asp-callout__lead {
  margin: 0 0 12px;
  font-size: 1.05rem;
  color: var(--ps-text);
}
.ps-asp-summary {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--ps-muted);
  line-height: 1.7;
}
.ps-asp-summary li { margin-bottom: 10px; }
.ps-asp-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ps-asp-steps li {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
  align-items: flex-start;
}
.ps-asp-steps__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ps-ice);
  color: #0b1220;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ps-asp-steps li div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--ps-muted);
}
.ps-asp-steps li strong { color: var(--ps-text); }

.ps-page-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding: 40px 20px 32px;
  overflow: hidden;
}
.ps-page-hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.ps-page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: #1a2744;
  background-image: var(
    --ps-page-hero-bg,
    linear-gradient(160deg, #1e3a5f 0%, #0b1220 100%)
  );
  background-size: cover;
  background-position: center;
}
.ps-page-hero--has-photo .ps-page-hero__bg {
  background-color: rgba(26, 39, 68, 0.2);
  background-image: linear-gradient(
    to top,
    rgba(11, 18, 32, 0.9) 0%,
    rgba(11, 18, 32, 0.38) 52%,
    rgba(11, 18, 32, 0.22) 100%
  );
}
.ps-page-hero--freefall .ps-page-hero__bg {
  --ps-page-hero-bg: linear-gradient(155deg, #1e4976 0%, #0b1220 60%, #075985 100%);
}
.ps-page-hero--door .ps-page-hero__bg {
  --ps-page-hero-bg: linear-gradient(155deg, #3730a3 0%, #0b1220 60%, #4338ca 100%);
}
.ps-page-hero--canopy .ps-page-hero__bg {
  --ps-page-hero-bg: linear-gradient(155deg, #115e59 0%, #0b1220 60%, #0f766e 100%);
}
.ps-page-hero--learn .ps-page-hero__bg {
  --ps-page-hero-bg: linear-gradient(155deg, #78350f 0%, #0b1220 55%, #b45309 100%);
}
.ps-page-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 18, 32, 0.92), rgba(11, 18, 32, 0.35));
}
.ps-page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  width: 100%;
}
.ps-page-hero__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ps-ice);
  margin-bottom: 8px;
}
.ps-page-hero h1 {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}
.ps-page-hero__lead {
  margin: 12px 0 0;
  font-size: 1.1rem;
  color: var(--ps-muted);
  max-width: 40rem;
}
.ps-prose {
  padding: 32px 20px 56px;
}
.ps-prose p {
  color: var(--ps-muted);
  line-height: 1.7;
  margin: 0 0 1rem;
}
.ps-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ps-services-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--ps-border);
  color: var(--ps-muted);
}
.ps-services-list strong {
  color: var(--ps-text);
  display: block;
  margin-bottom: 4px;
}
.ps-price-table {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ps-price-table li {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--ps-border);
  color: var(--ps-muted);
}
.ps-price-table span:first-child { color: var(--ps-text); }
.ps-footer {
  padding: 28px 20px;
  border-top: 1px solid var(--ps-border);
  text-align: center;
  font-size: 0.85rem;
  color: var(--ps-muted);
  line-height: 1.6;
}
.ps-footer p { margin: 0.35rem 0; }
.ps-footer a { color: var(--ps-ice); }
.ps-footer__fine {
  font-size: 0.8rem;
  opacity: 0.9;
  margin-top: 0.75rem !important;
}

/* Home — below hero/stats strip only: wider layout, editorial welcome, elevated cards */
.ps-home-welcome,
.ps-home-services,
.ps-home-gift {
  padding: 0;
  border-top: none;
}
.ps-body--home .ps-home-welcome,
.ps-body--home .ps-home-services,
.ps-body--home .ps-home-gift {
  background: var(--ps-light-bg);
  border-top: none;
  color: var(--ps-light-text);
}
.ps-body--home .ps-home-welcome {
  border-top: 1px solid rgba(148, 183, 234, 0.4);
}
.ps-body--home .ps-home-panel--alt {
  background: #eef2f6;
}
.ps-body--home .ps-home-welcome.ps-wrap,
.ps-body--home .ps-home-services.ps-wrap,
.ps-body--home .ps-home-gift.ps-wrap {
  max-width: 1120px;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
  padding-bottom: 0;
}
.ps-home-panel__inner {
  padding: clamp(3rem, 6vw, 4.25rem) 0;
  border-top: 1px solid rgba(15, 23, 42, 0.07);
}
.ps-body--home .ps-home-welcome .ps-home-panel__inner {
  border-top: none;
  padding-top: clamp(3.25rem, 7vw, 4.75rem);
}
.ps-home-section-head {
  max-width: 38rem;
  margin-bottom: 0.25rem;
}
.ps-home-section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.ps-home-section-head h2 {
  position: relative;
  padding-left: 1rem;
  margin: 0 0 0.5rem;
  font-family: "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.65rem, 3.2vw, 2.1rem);
  letter-spacing: 0.02em;
  line-height: 1.15;
  border-left: 4px solid var(--ps-stats-sky);
}
.ps-home-section-head--center h2 {
  padding-left: 0;
  border-left: none;
  padding-bottom: 0.65rem;
  border-bottom: 3px solid var(--ps-stats-sky);
  display: inline-block;
}
.ps-home-section-head p {
  margin: 0 0 1.5rem;
  font-family: "Barlow", "Source Sans 3", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.45;
}
.ps-home-section-head--center p {
  margin-top: 1rem;
}
.ps-body--home .ps-home-section-head p,
.ps-body--home .ps-home-section-head--center p {
  color: var(--ps-light-muted);
}
.ps-body--home .ps-home-section-head h2,
.ps-body--home .ps-home-section-head--center h2 {
  color: var(--ps-light-text);
}
.ps-home-prose {
  max-width: 42rem;
  margin-top: 0.5rem;
}
.ps-body--home .ps-home-prose p {
  color: var(--ps-light-muted);
  font-size: 1.02rem;
  line-height: 1.68;
}
.ps-home-cta-row {
  margin-top: 2rem;
}
.ps-home-cta-row--center {
  justify-content: center;
}
.ps-home-btn.ps-btn {
  min-height: 48px;
  padding: 12px 26px;
  border-radius: 10px;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}
.ps-body--home .ps-home-service-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.2s ease;
}
.ps-body--home .ps-home-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.1);
  border-color: rgba(148, 183, 234, 0.45);
}
.ps-body--home .ps-home-service-card p {
  color: var(--ps-light-muted);
}
.ps-body--home .ps-home-service-card h3 {
  color: var(--ps-light-text);
  font-family: "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.ps-body--home .ps-home-service-card a {
  color: #0f4c75;
  font-family: "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.ps-body--home .ps-home-service-card a:hover {
  color: #0369a1;
  border-bottom-color: rgba(3, 105, 161, 0.35);
}
.ps-home-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 1.75rem);
  margin-top: 0.5rem;
}
@media (max-width: 900px) {
  .ps-home-service-grid {
    grid-template-columns: 1fr;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.ps-home-service-card {
  background: var(--ps-panel, rgba(15, 23, 42, 0.45));
  border: 1px solid var(--ps-border);
  border-radius: 14px;
  padding: clamp(1.35rem, 3vw, 1.75rem) clamp(1.25rem, 3vw, 1.6rem);
  position: relative;
  overflow: hidden;
}
.ps-body--home .ps-home-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ps-stats-sky), rgba(148, 183, 234, 0.35));
  opacity: 0.9;
}
.ps-home-service-card__num {
  display: block;
  font-family: "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  font-size: clamp(2rem, 4.5vw, 2.65rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--ps-stats-sky);
  margin-bottom: 0.65rem;
  opacity: 0.92;
}
.ps-home-service-card h3 {
  margin: 0 0 10px;
  font-size: clamp(1.12rem, 2.2vw, 1.28rem);
}
.ps-home-service-card p {
  margin: 0 0 1.1rem;
  color: var(--ps-muted);
  font-size: 0.96rem;
  line-height: 1.6;
}
.ps-home-service-card a {
  font-weight: 600;
  font-size: 0.9rem;
}

/* Contact */
.ps-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 8px;
}
.ps-contact-card {
  padding: 18px 16px;
  border-radius: 10px;
  border: 1px solid var(--ps-border);
  background: rgba(15, 23, 42, 0.35);
}
.ps-contact-card h2 {
  margin: 0 0 10px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ps-ice);
}
.ps-contact-card p {
  margin: 0;
  color: var(--ps-muted);
  line-height: 1.5;
}
.ps-contact-note {
  margin-top: 10px !important;
  font-size: 0.88rem;
  opacity: 0.92;
}

/* Prices — packages */
.ps-price-section-title {
  margin: 2.5rem 0 0.5rem;
  font-size: 1.35rem;
  padding-top: 1rem;
  border-top: 1px solid var(--ps-border);
}
.ps-price-section-title:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.ps-price-intro {
  color: var(--ps-muted);
  margin: 0 0 1.25rem;
  max-width: 44rem;
  line-height: 1.6;
}
.ps-price-packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 0.5rem;
}
.ps-price-package {
  border: 1px solid var(--ps-border);
  border-radius: 12px;
  padding: 18px 16px;
  background: rgba(15, 23, 42, 0.4);
}
.ps-price-package h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}
.ps-price-package__amt {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ps-ice);
  margin: 0 0 10px;
}
.ps-price-package p {
  margin: 0;
  color: var(--ps-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}
.ps-price-package__includes {
  margin: 12px 0 0;
  padding-left: 1.1rem;
  color: var(--ps-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* Prices page — light layout (nav stays dark) */
.ps-body--prices {
  background: var(--ps-light-bg);
  color: var(--ps-light-text);
}
.ps-body--prices a {
  color: #0f4c75;
}
.ps-body--prices a:hover {
  color: #0369a1;
}
.ps-body--prices .ps-prices {
  max-width: 1120px;
  padding: clamp(2rem, 5vw, 3rem) clamp(20px, 4vw, 40px) clamp(3rem, 6vw, 4rem);
}
.ps-body--prices .ps-section__head {
  margin-bottom: 0.25rem;
}
.ps-body--prices .ps-section__head h1 {
  margin: 0 0 0.5rem;
  font-family: "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  letter-spacing: 0.02em;
  color: var(--ps-light-text);
}
.ps-body--prices .ps-section__head p {
  margin: 0 0 0.5rem;
  max-width: 42rem;
  color: var(--ps-light-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}
.ps-body--prices .ps-price-section-title {
  margin: 2.75rem 0 0.6rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  font-family: "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  letter-spacing: 0.02em;
  color: var(--ps-light-text);
}
.ps-body--prices .ps-price-section-title:first-of-type {
  margin-top: 1.5rem;
  padding-top: 0;
  border-top: none;
}
.ps-body--prices .ps-price-intro {
  color: var(--ps-light-muted);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.ps-body--prices .ps-price-packages {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
  margin-bottom: 0.25rem;
}
@media (max-width: 900px) {
  .ps-body--prices .ps-price-packages {
    grid-template-columns: 1fr;
    max-width: 26rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.ps-body--prices .ps-price-package {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  padding: clamp(1.35rem, 3vw, 1.65rem) clamp(1.2rem, 2.5vw, 1.45rem);
  box-shadow: 0 10px 36px rgba(15, 23, 42, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.ps-body--prices .ps-price-package::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ps-stats-sky), rgba(148, 183, 234, 0.35));
}
.ps-body--prices .ps-price-package:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.11);
  border-color: rgba(148, 183, 234, 0.4);
}
.ps-body--prices .ps-price-package h3 {
  margin: 0 0 0.35rem;
  font-family: "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.08rem, 2vw, 1.22rem);
  letter-spacing: 0.02em;
  color: var(--ps-light-text);
}
.ps-body--prices .ps-price-package__amt {
  font-family: "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  font-size: clamp(1.65rem, 3.5vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #0f4c75;
  margin: 0 0 0.75rem;
}
.ps-body--prices .ps-price-package p {
  color: var(--ps-light-muted);
  font-size: 0.96rem;
  line-height: 1.6;
}
.ps-body--prices .ps-price-package__includes {
  color: var(--ps-light-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-top: 0.85rem;
}
.ps-body--prices .ps-price-package__includes li {
  margin-bottom: 0.25rem;
}
.ps-body--prices .ps-price-table {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  padding: 0.35rem 1.25rem 0.15rem;
  margin: 0 0 0.25rem;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
  max-width: 40rem;
}
.ps-body--prices .ps-price-table li {
  border-bottom-color: rgba(15, 23, 42, 0.08);
  color: var(--ps-light-muted);
  padding: 0.95rem 0;
}
.ps-body--prices .ps-price-table li:last-child {
  border-bottom: none;
}
.ps-body--prices .ps-price-table span:first-child {
  color: var(--ps-light-text);
  font-weight: 600;
  padding-right: 1rem;
}
.ps-body--prices .ps-price-table a {
  font-weight: 600;
}
.ps-body--prices .ps-prices__cta {
  margin-top: 2.5rem;
}
.ps-body--prices .ps-btn--ghost {
  color: var(--ps-light-text) !important;
  border-color: rgba(15, 23, 42, 0.22);
}
.ps-body--prices .ps-btn--ghost:hover {
  border-color: #0369a1;
  color: #0369a1 !important;
}
.ps-body--prices .ps-footer {
  background: #e2e8ef;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  color: var(--ps-light-muted);
}
.ps-body--prices .ps-footer a {
  color: #0f4c75;
}
.ps-body--prices .ps-footer a:hover {
  color: #0369a1;
}
.ps-body--prices .ps-footer strong {
  color: var(--ps-light-text);
}

/* About — team list (thumbnails + profile links) */
.ps-team-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0 28px;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
}
.ps-team-list li {
  padding: 0;
  margin: 0;
  border-bottom: none;
}
.ps-team-list__card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--ps-border);
  text-decoration: none;
  color: inherit;
  border-radius: 4px;
  margin: 0 -4px;
  padding-left: 4px;
  padding-right: 4px;
  transition: background 0.15s ease;
}
.ps-team-list__card:hover {
  background: rgba(255, 255, 255, 0.04);
}
.ps-team-list__card:focus-visible {
  outline: 2px solid var(--ps-ice);
  outline-offset: 2px;
}
.ps-team-list__thumb {
  position: relative;
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: border-color 0.15s ease;
}
.ps-team-list__card:hover .ps-team-list__thumb {
  border-color: rgba(141, 204, 232, 0.35);
}
.ps-team-list__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ps-team-list__initials {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--ps-ice);
  background: linear-gradient(145deg, rgba(30, 58, 95, 0.5), rgba(15, 23, 42, 0.85));
}
.ps-team-list__thumb--fallback .ps-team-list__initials {
  display: flex;
}
.ps-team-list__meta {
  display: block;
  min-width: 0;
  text-align: left;
}
.ps-team-list__name {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ps-ice);
  text-decoration: none;
  line-height: 1.25;
}
.ps-team-list__card:hover .ps-team-list__name {
  color: #e0f2fe;
  text-decoration: underline;
}
.ps-team-list__role {
  display: block;
  margin-top: 4px;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--ps-muted);
}

/* Team member profile (linked from /about) */
.ps-team-profile {
  padding-top: 24px;
  padding-bottom: 48px;
}
.ps-team-profile__back {
  margin: 0 0 1.25rem;
  font-size: 0.92rem;
}
.ps-team-profile__back a {
  color: var(--ps-ice);
  text-decoration: none;
  font-weight: 600;
}
.ps-team-profile__back a:hover {
  text-decoration: underline;
}
.ps-team-profile__photo-wrap {
  max-width: min(100%, 420px);
  margin: 0 0 1.25rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--ps-border);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}
.ps-team-profile__photo-wrap img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}
.ps-team-profile__header h1 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  line-height: 1.2;
  color: var(--ps-text);
}
.ps-team-profile__role {
  margin: 0 0 1.5rem;
  color: var(--ps-muted);
  font-size: 1.05rem;
  line-height: 1.5;
}
.ps-team-profile__bio {
  max-width: 40rem;
}
.ps-team-profile__bio p {
  color: var(--ps-muted);
  line-height: 1.65;
}
