:root {
  --pt-bg: #0b0c0e;
  --pt-surface: #141518;
  --pt-raised: #1c1e22;
  --pt-fg: #f4f1ea;
  --pt-muted: #9aa3ad;
  --pt-subtle: #6b7380;
  --pt-accent: #ff3b00;
  --pt-accent-hover: #ff5724;
  --pt-accent-fg: #0b0c0e;
  --pt-border: #2a2d33;
  --pt-display: "Barlow Condensed", "IBM Plex Sans", ui-sans-serif, sans-serif;
  --pt-sans: "IBM Plex Sans", ui-sans-serif, system-ui, sans-serif;
  --pt-shadow: 0 0 0 1px rgb(244 241 234 / 0.08);
  --pt-radius: 0.5rem;
}

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

html {
  -webkit-font-smoothing: antialiased;
  background: var(--pt-bg);
  color: var(--pt-fg);
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
  overflow-x: clip;
}

@media (min-width: 768px) {
  html { scroll-padding-top: 7.5rem; }
}

body.pt-body {
  margin: 0;
  min-height: 100dvh;
  background: var(--pt-bg);
  color: var(--pt-fg);
  font-family: var(--pt-sans);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: clip;
  padding-bottom: calc(3.6rem + env(safe-area-inset-bottom, 0px));
}
@media (min-width: 768px) {
  body.pt-body { padding-bottom: 0; }
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0; text-wrap: pretty; }
h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--pt-display);
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-wrap: balance;
  font-weight: 800;
  text-transform: uppercase;
}

:focus-visible { outline: 2px solid var(--pt-accent); outline-offset: 3px; }

.pt-skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.pt-skip:focus {
  left: 12px;
  top: 12px;
  z-index: 80;
  background: var(--pt-accent);
  color: var(--pt-accent-fg);
  padding: 8px 12px;
}

.pt-chrome { position: sticky; top: 0; z-index: 50; }
.admin-bar .pt-chrome { top: 32px; }
@media (max-width: 782px) {
  .admin-bar .pt-chrome { top: 46px; }
}

.pt-wrap {
  width: min(1152px, calc(100% - 2rem));
  margin-inline: auto;
}
@media (min-width: 768px) {
  .pt-wrap { width: min(1152px, calc(100% - 2.5rem)); }
}

.pt-kicker {
  font-family: var(--pt-display);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pt-accent);
  font-size: 0.8125rem;
}

.pt-dispatch-mobile {
  display: flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--pt-accent);
  color: var(--pt-accent-fg);
  font-family: var(--pt-display);
  font-size: 1.125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-top: max(0.5rem, env(safe-area-inset-top, 0px));
  padding-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .pt-dispatch-mobile { display: none; }
}

.pt-dispatch-desktop { display: none; border-bottom: 1px solid var(--pt-border); background: var(--pt-surface); }
@media (min-width: 768px) {
  .pt-dispatch-desktop { display: block; }
}
.pt-dispatch-desktop .pt-wrap {
  display: flex;
  height: 2.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
}
.pt-dispatch-desktop p {
  font-family: var(--pt-display);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pt-accent);
}
.pt-dispatch-desktop a {
  font-family: var(--pt-display);
  font-weight: 700;
  font-size: 1rem;
}
.pt-dispatch-desktop a:hover { color: var(--pt-accent); }
.pt-slash { color: var(--pt-subtle); margin: 0 0.75rem; }

.pt-header {
  border-bottom: 1px solid var(--pt-border);
  background: rgb(11 12 14 / 0.95);
  backdrop-filter: blur(8px);
}
.pt-header .pt-wrap {
  display: flex;
  height: 3.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 768px) {
  .pt-header .pt-wrap { height: 4rem; }
}
.pt-logo img { height: 2.25rem; width: auto; max-width: 11.5rem; }
@media (min-width: 768px) {
  .pt-logo img { height: 2.5rem; }
}

.pt-nav-desktop { display: none; gap: 1.5rem; }
@media (min-width: 1024px) {
  .pt-nav-desktop { display: flex; }
}
.pt-nav-desktop a {
  font-family: var(--pt-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pt-muted);
}
.pt-nav-desktop a:hover,
.pt-nav-desktop a[aria-current="page"] { color: var(--pt-fg); }

.pt-header-actions { display: flex; align-items: center; gap: 0.5rem; }
.pt-menu-btn {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  color: var(--pt-fg);
  cursor: pointer;
}
@media (min-width: 1024px) {
  .pt-menu-btn { display: none; }
}

.pt-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
}
.pt-drawer.is-open { display: block; }
.pt-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgb(11 12 14 / 0.8);
}
.pt-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(100%, 20rem);
  background: var(--pt-surface);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
.pt-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.pt-drawer-head h2 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.pt-drawer-nav { display: flex; flex-direction: column; gap: 1.25rem; }
.pt-drawer-nav a {
  font-family: var(--pt-display);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pt-muted);
}
.pt-drawer-cta { margin-top: auto; display: flex; flex-direction: column; gap: 0.75rem; }

.pt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--pt-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  text-align: center;
  transition: background-color 150ms ease-out, color 150ms ease-out, filter 150ms ease-out;
}
.pt-btn:active { transform: scale(0.96); }
.pt-btn-call {
  background: var(--pt-accent);
  color: var(--pt-accent-fg);
}
.pt-btn-call:hover { background: var(--pt-accent-hover); }
.pt-btn-outline {
  background: transparent;
  color: var(--pt-fg);
  box-shadow: inset 0 0 0 1.5px var(--pt-fg);
}
.pt-btn-outline:hover { background: var(--pt-fg); color: var(--pt-bg); }
.pt-btn-sm { height: 2.5rem; padding: 0 0.9rem; font-size: 0.875rem; }
.pt-btn-md { height: 2.75rem; padding: 0 1rem; }
.pt-btn-lg { height: 3.5rem; padding: 0 1.5rem; font-size: 1.125rem; }
.pt-btn-xl { height: 4rem; padding: 0 1.75rem; font-size: 1.25rem; }
.pt-btn-full { width: 100%; }
@media (min-width: 640px) {
  .pt-btn-full-sm { width: auto; }
}
.pt-header-call { display: none; }
@media (min-width: 640px) {
  .pt-header-call { display: inline-flex; }
}

.pt-hero { position: relative; overflow: hidden; }
.pt-hero-bg { position: absolute; inset: 0; }
.pt-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.pt-hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--pt-bg) 0%, rgb(11 12 14 / 0.55) 42%, rgb(11 12 14 / 0.2) 100%),
    linear-gradient(to right, rgb(11 12 14 / 0.82) 0%, rgb(11 12 14 / 0.4) 48%, transparent 100%);
}
.pt-hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: min(28rem, 72dvh);
  padding: 2.5rem 0 2.5rem;
}
@media (min-width: 768px) {
  .pt-hero-inner { min-height: 36rem; padding: 5rem 0 4rem; }
}
.pt-hero h1 {
  margin-top: 0.75rem;
  max-width: 56rem;
  font-size: clamp(1.75rem, 8vw, 2.35rem);
  line-height: 0.92;
}
@media (min-width: 640px) { .pt-hero h1 { font-size: 3rem; } }
@media (min-width: 768px) { .pt-hero h1 { font-size: 4.5rem; } }
.pt-lede {
  margin-top: 1.25rem;
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgb(244 241 234 / 0.9);
}
@media (min-width: 768px) { .pt-lede { font-size: 1.125rem; } }
.pt-actions { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.75rem; }
@media (min-width: 640px) {
  .pt-actions { flex-direction: row; align-items: center; }
}
.pt-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--pt-border);
}
@media (min-width: 640px) { .pt-stat-row { grid-template-columns: repeat(4, 1fr); } }
.pt-stat-row li {
  font-family: var(--pt-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pt-muted);
}

.pt-page-hero {
  border-bottom: 1px solid var(--pt-border);
  background: var(--pt-surface);
  padding: 2.5rem 0;
}
@media (min-width: 768px) { .pt-page-hero { padding: 4rem 0; } }
.pt-page-hero h1 {
  margin-top: 0.75rem;
  max-width: 56rem;
  font-size: 2.25rem;
  line-height: 0.95;
}
@media (min-width: 768px) { .pt-page-hero h1 { font-size: 3.75rem; } }
.pt-page-hero .pt-lede { color: var(--pt-muted); }

.pt-section { padding: 3.5rem 0; border-top: 1px solid var(--pt-border); }
@media (min-width: 768px) { .pt-section { padding: 5rem 0; } }
.pt-section-surface { background: var(--pt-surface); }
.pt-section h2 { margin-top: 0.75rem; font-size: 2.25rem; max-width: 48rem; }
@media (min-width: 768px) { .pt-section h2 { font-size: 3rem; } }
.pt-copy {
  margin-top: 1.25rem;
  max-width: 48rem;
  color: var(--pt-muted);
  line-height: 1.65;
}

.pt-grid-2 { display: grid; gap: 1rem; }
@media (min-width: 768px) { .pt-grid-2 { grid-template-columns: 1fr 1fr; } }
.pt-grid-3 { display: grid; gap: 0.75rem; }
@media (min-width: 900px) { .pt-grid-3 { grid-template-columns: 1fr 1fr 1fr; } }
.pt-grid-4 { display: grid; gap: 0.75rem; }
@media (min-width: 640px) { .pt-grid-4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px) { .pt-grid-4 { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.pt-split { display: grid; gap: 2.5rem; }
@media (min-width: 768px) {
  .pt-split { grid-template-columns: 5fr 7fr; align-items: start; }
}
.pt-split-rev { display: grid; gap: 2.5rem; }
@media (min-width: 768px) {
  .pt-split-rev { grid-template-columns: 5fr 7fr; }
}

.pt-card {
  background: var(--pt-surface);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: var(--pt-shadow);
}
@media (min-width: 768px) { .pt-card { padding: 2rem; } }
.pt-card-raised {
  background: var(--pt-raised);
  border-radius: 0.5rem;
  padding: 1.25rem;
  box-shadow: var(--pt-shadow);
}
.pt-card h3 { font-size: 1.75rem; margin-top: 0.75rem; }
.pt-card p, .pt-card-raised p { margin-top: 0.75rem; color: var(--pt-muted); font-size: 0.9375rem; line-height: 1.6; }
.pt-own { display: flex; align-items: center; gap: 0.5rem; margin-top: 1.25rem; font-size: 0.875rem; }

.pt-cap {
  display: flex;
  gap: 1rem;
  background: var(--pt-raised);
  border-radius: 0.5rem;
  padding: 1.25rem;
  box-shadow: var(--pt-shadow);
}
.pt-cap-icon {
  flex: 0 0 2.75rem;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pt-accent);
  color: var(--pt-accent-fg);
  border-radius: 0.25rem;
  font-family: var(--pt-display);
  font-weight: 800;
}
.pt-cap h3 { font-size: 1.25rem; line-height: 1.15; }
.pt-cap p { margin-top: 0.25rem; font-size: 0.875rem; color: var(--pt-muted); line-height: 1.5; }
.pt-cap-list { display: grid; gap: 0.75rem; }

.pt-photo {
  outline: 1px solid rgb(244 241 234 / 0.1);
  outline-offset: -1px;
  object-fit: cover;
  width: 100%;
  border-radius: 0.5rem;
}
.pt-equip {
  overflow: hidden;
  background: var(--pt-surface);
  border-radius: 0.75rem;
  box-shadow: var(--pt-shadow);
}
.pt-equip img { height: 12rem; width: 100%; object-fit: cover; }
.pt-equip img.pt-photo-contain,
.pt-photo-contain,
.pt-img-h-48.pt-photo-contain,
.pt-img-h-44.pt-photo-contain,
.pt-img-h-56.pt-photo-contain {
  object-fit: contain;
  height: 18rem;
  background: var(--pt-raised);
}
.pt-equip-body { padding: 1.25rem; }
.pt-equip h3 { font-size: 1.75rem; margin-top: 0.25rem; }
.pt-equip p { margin-top: 0.5rem; color: var(--pt-muted); font-size: 0.875rem; line-height: 1.55; }

.pt-route {
  background: var(--pt-raised);
  border-radius: 0.5rem;
  padding: 1.25rem;
  box-shadow: var(--pt-shadow);
}
.pt-route-id {
  font-family: var(--pt-display);
  font-size: 1.875rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--pt-accent);
}
.pt-route-focus {
  font-family: var(--pt-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}
.pt-route p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--pt-muted); }

.pt-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; }
.pt-chip {
  background: var(--pt-bg);
  border-radius: 0.25rem;
  padding: 0.4rem 0.75rem;
  font-family: var(--pt-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pt-muted);
}
.pt-chip-surface { background: var(--pt-surface); box-shadow: var(--pt-shadow); padding: 0.5rem 0.75rem; }

.pt-quote { background: var(--pt-surface); border-radius: 0.5rem; padding: 1.25rem; box-shadow: var(--pt-shadow); }
.pt-quote p { font-size: 0.875rem; color: var(--pt-muted); line-height: 1.6; }
.pt-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-family: var(--pt-display);
  font-style: normal;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pt-check { display: flex; gap: 0.5rem; font-size: 0.875rem; margin-top: 0.75rem; }
.pt-check svg { flex-shrink: 0; margin-top: 2px; color: var(--pt-accent); }

.pt-form { display: grid; gap: 1rem; }
.pt-form-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .pt-form-grid { grid-template-columns: 1fr 1fr; } }
.pt-field { display: grid; gap: 0.4rem; }
.pt-field span {
  font-family: var(--pt-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pt-muted);
}
.pt-req { color: var(--pt-accent); }
.pt-field input,
.pt-field select,
.pt-field textarea {
  height: 3rem;
  width: 100%;
  border: 0;
  border-radius: 0.5rem;
  background: var(--pt-raised);
  color: var(--pt-fg);
  padding: 0 0.9rem;
  font: inherit;
  font-size: 16px;
  box-shadow: inset 0 0 0 1px var(--pt-border);
}
.pt-field textarea { height: auto; min-height: 7rem; padding: 0.75rem 0.9rem; }
.pt-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239aa3ad' stroke-width='2.4'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
}
.pt-hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.pt-notice {
  background: var(--pt-raised);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: var(--pt-shadow);
}
.pt-notice h3 { font-size: 1.5rem; }
.pt-error { color: var(--pt-accent); font-size: 0.875rem; }
.pt-fine { font-size: 0.75rem; color: var(--pt-subtle); }
.pt-phone-xl {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-family: var(--pt-display);
  font-size: clamp(1.35rem, 6vw, 1.875rem);
  font-weight: 800;
  color: var(--pt-accent);
}

.pt-dispatch-bottom {
  display: flex;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  min-height: 3.5rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--pt-accent);
  color: var(--pt-accent-fg);
  font-family: var(--pt-display);
  font-size: 1.125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-top: 0.65rem;
  padding-bottom: max(0.65rem, env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -8px 24px rgb(0 0 0 / 0.45);
}
@media (min-width: 768px) {
  .pt-dispatch-bottom { display: none; }
}

.pt-footer { border-top: 1px solid var(--pt-border); background: var(--pt-surface); }
.pt-footer-grid {
  display: grid;
  gap: 2.5rem;
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .pt-footer-grid { grid-template-columns: 4fr 3fr 5fr; padding: 4rem 0; }
}
.pt-wordmark {
  font-family: var(--pt-display);
  font-size: 1.875rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.02em;
}
.pt-wordmark span { display: block; color: var(--pt-accent); }
.pt-footer .pt-copy { margin-top: 1rem; font-size: 0.875rem; }
.pt-footer-phone { display: block; font-family: var(--pt-display); font-weight: 700; }
.pt-footer-phone-lg { font-size: 1.5rem; color: var(--pt-accent); margin-top: 1.5rem; }
.pt-footer-phone-sm { font-size: 1.125rem; margin-top: 0.25rem; }
.pt-footer nav { display: flex; flex-direction: column; gap: 0.65rem; margin-top: 1rem; }
.pt-footer nav a { color: var(--pt-muted); }
.pt-footer nav a:hover { color: var(--pt-fg); }
.pt-yards { display: grid; gap: 1rem; margin-top: 1rem; }
@media (min-width: 640px) { .pt-yards { grid-template-columns: 1fr 1fr; } }
.pt-yards h3 {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pt-yards p { color: var(--pt-muted); font-size: 0.875rem; margin-top: 0.2rem; }
.pt-legal {
  border-top: 1px solid var(--pt-border);
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--pt-subtle);
}
@media (min-width: 768px) {
  .pt-legal { flex-direction: row; align-items: center; justify-content: space-between; }
}
.pt-legal a:hover { color: var(--pt-fg); }
.pt-social { display: flex; gap: 1rem; }

.pt-mt { margin-top: 1.5rem; }
.pt-mt-8 { margin-top: 2rem; }
.pt-mt-10 { margin-top: 2.5rem; }
.pt-mt-12 { margin-top: 3rem; }
.pt-mt-14 { margin-top: 3.5rem; }
.pt-img-h-56 { height: 14rem; object-fit: cover; }
.pt-img-h-72 { height: 18rem; object-fit: cover; }
.pt-img-h-48 { height: 12rem; object-fit: cover; }
.pt-img-h-44 { height: 11rem; object-fit: cover; }
.pt-job { background: var(--pt-raised); border-radius: 0.5rem; padding: 0.75rem 1rem; font-size: 0.875rem; }
.pt-guarantee-line {
  margin-top: 2rem;
  max-width: 48rem;
  font-family: var(--pt-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.25;
}
@media (min-width: 768px) { .pt-guarantee-line { font-size: 1.5rem; } }
.pt-privacy { max-width: 48rem; padding: 3.5rem 0; }
.pt-privacy .pt-copy { color: var(--pt-muted); font-size: 0.875rem; }
.pt-privacy p + p { margin-top: 1rem; }
.pt-phone-block { margin-top: 1rem; }
.pt-phone-block a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--pt-display);
  font-weight: 800;
  color: var(--pt-accent);
  font-size: 2.25rem;
}
.pt-sublabel {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pt-subtle);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* Careers / employee application form */
.pt-form-section {
  display: grid;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--pt-border);
}
.pt-form-section:first-of-type { border-top: 0; padding-top: 0; }
.pt-form-section h3 {
  font-family: var(--pt-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pt-form-block {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.02);
  box-shadow: inset 0 0 0 1px var(--pt-border);
}
.pt-form-block h4 {
  font-family: var(--pt-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pt-muted);
}
@media (min-width: 900px) {
  .pt-form-grid-3 { grid-template-columns: 1fr 1fr 1fr; }
}
.pt-field-full { grid-column: 1 / -1; }
.pt-yn {
  gap: 0.6rem;
}
.pt-yn legend {
  font-family: var(--pt-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pt-muted);
  margin-bottom: 0.35rem;
}
.pt-radio {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-right: 1rem;
  font-size: 0.95rem;
  color: var(--pt-fg);
}
.pt-check-field {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.95rem;
  line-height: 1.45;
  padding: 0.85rem 1rem;
  border-radius: 0.5rem;
  box-shadow: inset 0 0 0 1px var(--pt-border);
  background: var(--pt-raised);
}
.pt-check-field input { margin-top: 0.25rem; flex-shrink: 0; }
.pt-consent {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.75rem;
  box-shadow: inset 0 0 0 1px var(--pt-border);
  background: rgba(255,255,255,0.02);
  max-height: 16rem;
  overflow: auto;
}
.pt-field input[type="file"] {
  height: auto;
  padding: 0.65rem 0.75rem;
  cursor: pointer;
}
.pt-sensitive input {
  letter-spacing: 0.04em;
}
.pt-sensitive-note { margin-top: 0.25rem; }

.pt-list {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.75rem;
  padding-left: 1.1rem;
  color: var(--pt-muted);
}
.pt-list li { list-style: disc; }
