@layer tokens, base, components, sections, page, utility;

/* Layer order. Repeated in every file so a CSS combiner cannot reorder it. */
@layer tokens, base, components, sections, page, utility;

@layer base {

/* ---------------------------------------------------------- type roles */
h1, h2, h3, h4, .pb-display { font-family: var(--pb-font-display); }
h1 { font-weight: 800; letter-spacing: -0.035em; }
h2 { font-weight: 700; letter-spacing: -0.03em; }
h3 { font-weight: 600; letter-spacing: -0.018em; }

.pb-eyebrow,
.pb-stat-value,
.pb-price,
.pb-step-n,
.pb-compare thead th,
.pb-data { font-family: var(--pb-font-data); }

.pb-eyebrow { font-weight: 500; letter-spacing: .18em; font-size: 11.5px; }
.pb-stat-value { font-weight: 500; letter-spacing: -0.02em; }


/* ============================================================
   PPCBud — brand design system v4.0
   Light-first. Navy ink, white and mist surfaces, green accent.
   Loaded on every page. Covers site pages and location pages.
   ============================================================ */

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

body {
  margin: 0;
  background: var(--pb-paper);
  color: var(--pb-body);
  font-family: var(--pb-font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

/* ---------------------------------------------------------- type */
h1, h2, h3, h4 {
  font-family: var(--pb-font-head);
  color: var(--pb-ink);
  letter-spacing: -0.028em;
  line-height: 1.1;
  margin: 0 0 16px;
  font-weight: 800;
}
h1 { font-size: clamp(34px, 5.2vw, 60px); }
h2 { font-size: clamp(26px, 3.4vw, 40px); }
h3 { font-size: 19px; letter-spacing: -0.015em; }
p  { margin: 0 0 18px; }
a  { color: var(--pb-navy); text-decoration-color: rgba(11,42,91,.28); text-underline-offset: 3px; }
a:hover { color: var(--pb-navy-soft); }

.pb-wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.pb-prose { max-width: 72ch; }
.pb-prose p { color: var(--pb-body); }

.pb-eyebrow {
  font-size: 12px; font-weight: 800; letter-spacing: .2em;
  text-transform: uppercase; color: var(--pb-brand-deep); margin: 0 0 14px;
}
.pb-lead { font-size: clamp(17px, 2vw, 21px); color: var(--pb-slate); max-width: 62ch; line-height: 1.6; }
.pb-note { font-size: 13px; color: var(--pb-faint); }
.pb-sec-intro { font-size: 17px; color: var(--pb-slate); max-width: 64ch; margin-bottom: 34px; }

/* ------------------------------------------------------ sections */
/* Every section declares its own background. Leaving .pb-sec transparent
   meant it inherited whatever the body happened to be — which is how a
   single stale body rule turned every other section dark. */
.pb-sec { padding: 84px 0; border-top: 1px solid var(--pb-line-soft); background: var(--pb-paper); }
.pb-sec-tight { padding: 44px 0; }
.pb-sec:first-child { border-top: 0; }
.pb-sec-mist { background: var(--pb-mist); }

/* Dark contrast band */
.pb-sec-dark {
  background: var(--pb-dark);
  border-top: 0;
  color: var(--pb-dark-text);
}
.pb-sec-dark h1, .pb-sec-dark h2, .pb-sec-dark h3, .pb-sec-dark h4 { color: #fff; }
.pb-sec-dark .pb-sec-label i { color: var(--pb-brand); }
.pb-sec-dark .pb-stat-note, .pb-sec-dark .pb-note { color: var(--pb-dark-muted); }
.pb-sec-dark p { color: var(--pb-dark-text); }
.pb-sec-dark .pb-sec-intro, .pb-sec-dark .pb-lead { color: var(--pb-dark-muted); }
.pb-sec-dark .pb-card {
  background: var(--pb-dark-2); border-color: var(--pb-dark-line);
}
.pb-sec-dark .pb-card p { color: var(--pb-dark-muted); }
.pb-sec-dark .pb-eyebrow { color: var(--pb-brand); }

}

@layer components {
/* --------------------------------------------------------- nav */
.pb-skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--pb-navy); color: #fff; padding: 12px 18px; border-radius: 0 0 8px 0;
}
.pb-skip:focus { left: 0; }

.pb-nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--pb-line);
}
.pb-nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 24px;
  min-height: 68px;
}
.pb-nav-logo { display: flex; align-items: center; text-decoration: none; flex: none; }
.pb-brand-logo, .pb-nav-logo .custom-logo { display: block; height: 30px; width: auto; }

.pb-nav-links { margin-left: auto; }
.pb-menu { display: flex; gap: 24px; list-style: none; margin: 0; padding: 0; }
.pb-menu a {
  font-size: 14.5px; font-weight: 600; color: var(--pb-ink);
  text-decoration: none; padding: 6px 0; position: relative; white-space: nowrap;
}
.pb-menu a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--pb-brand); transform: scaleX(0);
  transition: transform .18s ease;
}
.pb-menu a:hover::after,
.pb-menu .current-menu-item > a::after { transform: scaleX(1); }

/* --- desktop dropdown --------------------------------------------
   Without this, WordPress renders child items as a plain nested <ul>
   that sits in the flow, pushes the header open and shoves the logo
   out of alignment. It has to be taken out of flow explicitly. */
.pb-menu > li { position: relative; }
.pb-menu > li.menu-item-has-children > a { padding-right: 15px; }
.pb-menu > li.menu-item-has-children > a::before {
  content: "";
  position: absolute; right: 0; top: 50%;
  width: 6px; height: 6px; margin-top: -4px;
  border-right: 1.6px solid var(--pb-faint);
  border-bottom: 1.6px solid var(--pb-faint);
  transform: rotate(45deg);
  transition: border-color .18s ease;
}
.pb-menu > li.menu-item-has-children:hover > a::before { border-color: var(--pb-navy); }

.pb-menu .sub-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: -18px;
  min-width: 230px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: #fff;
  border: 1px solid var(--pb-line);
  border-radius: var(--pb-r);
  box-shadow: var(--pb-shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
  z-index: 70;
}
/* Bridges the gap so the menu does not close as the cursor travels to it. */
.pb-menu .sub-menu::before {
  content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 14px;
}
.pb-menu > li:hover > .sub-menu,
.pb-menu > li:focus-within > .sub-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.pb-menu .sub-menu li { display: block; }
.pb-menu .sub-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--pb-r-sm);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--pb-ink);
  white-space: nowrap;
}
.pb-menu .sub-menu a::after { display: none; }
.pb-menu .sub-menu a:hover { background: var(--pb-mist); color: var(--pb-navy); }

.pb-nav-cta {
  background: var(--pb-navy); color: #fff !important; font-weight: 700; font-size: 14px;
  padding: 11px 20px; border-radius: var(--pb-r-sm); text-decoration: none; flex: none;
}
.pb-nav-cta:hover { background: var(--pb-navy-deep); }

/* --- burger ------------------------------------------------------ */
.pb-nav-toggle {
  display: none; margin-left: auto; background: none; border: 1px solid var(--pb-line);
  border-radius: 10px; width: 44px; height: 44px; cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
}
.pb-burger { display: block; width: 18px; }
.pb-burger i {
  display: block; height: 2px; background: var(--pb-ink); border-radius: 2px;
  margin: 4px 0; transition: transform .22s ease, opacity .18s ease;
}
.pb-nav-toggle[aria-expanded="true"] .pb-burger i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.pb-nav-toggle[aria-expanded="true"] .pb-burger i:nth-child(2) { opacity: 0; }
.pb-nav-toggle[aria-expanded="true"] .pb-burger i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* --- drawer ------------------------------------------------------ */
.pb-nav-drawer {
  display: none;
  border-top: 1px solid var(--pb-line);
  background: #fff;
  padding: 14px 24px 22px;
  max-height: calc(100dvh - 68px);
  overflow-y: auto;
}
.pb-nav-drawer.is-open { display: block; }
body.pb-nav-open { overflow: hidden; }

.pb-drawer-menu { list-style: none; margin: 0 0 18px; padding: 0; }
.pb-drawer-menu li { border-bottom: 1px solid var(--pb-line-soft); }
.pb-drawer-menu a {
  display: block; padding: 15px 2px; font-size: 16.5px; font-weight: 600;
  color: var(--pb-ink); text-decoration: none;
}
.pb-drawer-menu a:active { color: var(--pb-navy); }
.pb-drawer-menu .sub-menu { list-style: none; margin: 0 0 8px; padding: 0 0 0 14px; }
.pb-drawer-menu .sub-menu a { font-size: 15px; font-weight: 500; color: var(--pb-slate); padding: 11px 2px; }
.pb-drawer-actions { display: grid; gap: 10px; }

/* ----------------------------------------------------- buttons */
.pb-btn {
  display: inline-block; padding: 14px 26px; border-radius: var(--pb-r-sm);
  font-family: var(--pb-font-head); font-weight: 700; font-size: 15px;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.pb-btn:hover { transform: translateY(-1px); }
/* Navy is the primary action: 14:1 on white, and green would be 2.2:1 as text */
.pb-btn-primary { background: var(--pb-navy); color: #fff; }
.pb-btn-primary:hover { background: var(--pb-navy-deep); color: #fff; }
.pb-btn-accent { background: var(--pb-brand); color: var(--pb-brand-ink); }
.pb-btn-accent:hover { background: var(--pb-brand-dim); color: var(--pb-brand-ink); }
.pb-btn-ghost { border-color: var(--pb-line); color: var(--pb-ink); background: #fff; }
.pb-btn-ghost:hover { border-color: var(--pb-navy); color: var(--pb-navy); }
.pb-btn-block { display: block; width: 100%; text-align: center; }
.pb-sec-dark .pb-btn-primary { background: var(--pb-brand); color: var(--pb-brand-ink); }
.pb-sec-dark .pb-btn-ghost { background: transparent; border-color: var(--pb-dark-line); color: #fff; }
.pb-link { color: var(--pb-navy); font-weight: 600; text-decoration: none; }
.pb-link:hover { text-decoration: underline; }

/* -------------------------------------------------------- hero */
.pb-page { background: var(--pb-paper); }

.pb-page-hero {
  padding: 84px 0 68px;
  background:
    radial-gradient(900px 380px at 8% -20%, var(--pb-brand-wash), transparent 65%),
    radial-gradient(800px 340px at 92% -10%, var(--pb-navy-wash), transparent 60%),
    var(--pb-paper);
  border-bottom: 1px solid var(--pb-line-soft);
}
.pb-page-h1 { max-width: 22ch; }
.pb-align-center { text-align: center; }
.pb-align-center .pb-page-h1, .pb-align-center .pb-lead { margin-left: auto; margin-right: auto; }
.pb-align-center .pb-loc-cta-row { justify-content: center; }
.pb-loc-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }

/* Homepage hero runs dark for contrast against the white nav */
.pb-hero-home {
  background: var(--pb-dark);
  padding: 96px 0 88px;
  border-bottom: 0;
}
.pb-hero-home h1 { color: #fff; }
.pb-hero-home .pb-lead { color: var(--pb-dark-muted); }
.pb-hero-home .pb-eyebrow { color: var(--pb-brand); }
.pb-hero-home .pb-btn-primary { background: var(--pb-brand); color: var(--pb-brand-ink); }
.pb-hero-home .pb-btn-ghost { background: transparent; border-color: var(--pb-dark-line); color: #fff; }

/* ------------------------------------------------------- cards */
.pb-card-grid { display: grid; gap: 18px; }
.pb-card-grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.pb-card-grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.pb-card-grid-4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.pb-card-grid-5 { grid-template-columns: repeat(auto-fit, minmax(196px, 1fr)); }
.pb-card {
  background: var(--pb-paper); border: 1px solid var(--pb-line);
  border-radius: var(--pb-r); padding: 26px; transition: border-color .18s, box-shadow .18s;
}
.pb-card:hover { border-color: var(--pb-navy); box-shadow: var(--pb-shadow); }
.pb-card h3 { margin-bottom: 8px; }
.pb-card h3 a { text-decoration: none; color: inherit; }
.pb-card p { font-size: 14.5px; color: var(--pb-slate); margin: 0; }
.pb-card-meta { margin-top: 12px !important; font-size: 13px !important; color: var(--pb-brand-deep) !important; font-weight: 600; }
.pb-card-problem { border-left: 3px solid var(--pb-brand); }
.pb-sec-mist .pb-card { background: #fff; }

/* ------------------------------------------------------- stats */
.pb-stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 18px; }
.pb-stat {
  background: var(--pb-mist); border: 1px solid var(--pb-line);
  border-radius: var(--pb-r); padding: 26px;
}
.pb-sec-mist .pb-stat { background: #fff; }
.pb-stat-value {
  display: block; font-family: var(--pb-font-head); font-size: 38px;
  font-weight: 800; color: var(--pb-navy); line-height: 1; letter-spacing: -.03em;
}
.pb-stat-label { display: block; margin-top: 8px; font-size: 13px; color: var(--pb-slate); }
.pb-stat-note { font-size: 12.5px; color: var(--pb-faint); margin-top: 16px; }
.pb-sec-dark .pb-stat { background: var(--pb-dark-2); border-color: var(--pb-dark-line); }
.pb-sec-dark .pb-stat-value { color: var(--pb-brand); }
.pb-sec-dark .pb-stat-label { color: var(--pb-dark-muted); }

/* ------------------------------------------------------- steps */
.pb-steps { list-style: none; counter-reset: s; padding: 0; margin: 0; display: grid; gap: 2px;
  border: 1px solid var(--pb-line); border-radius: var(--pb-r); overflow: hidden; background: var(--pb-line); }
.pb-steps li { background: #fff; padding: 28px 30px; }
.pb-step-n {
  display: inline-block; font-family: var(--pb-font-head); font-size: 12px;
  font-weight: 800; color: var(--pb-brand-deep); letter-spacing: .14em; margin-bottom: 10px;
}
.pb-steps h3 { margin-bottom: 6px; }
.pb-steps p { margin: 0; color: var(--pb-slate); font-size: 15px; max-width: 76ch; }

/* -------------------------------------------------------- list */
.pb-check-list { list-style: none; padding: 0; margin: 0; }
.pb-check-list li {
  padding: 13px 0 13px 30px; position: relative;
  border-bottom: 1px solid var(--pb-line-soft); font-size: 15px; color: var(--pb-body);
}
.pb-check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 12px;
  color: var(--pb-brand-deep); font-weight: 800;
}
.pb-check-cols { columns: 2; column-gap: 40px; }
@media (max-width: 700px) { .pb-check-cols { columns: 1; } }
.pb-check-cols li { break-inside: avoid; }

/* ------------------------------------------------------ badges */
.pb-badge-row { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; }
.pb-badge {
  border: 1px solid var(--pb-line); background: #fff; color: var(--pb-ink);
  border-radius: 99px; padding: 9px 18px; font-size: 13.5px; font-weight: 600;
}
.pb-badge:hover { border-color: var(--pb-brand); }

/* ----------------------------------------------------- pricing */
.pb-price-card {
  background: #fff; border: 1px solid var(--pb-line);
  border-radius: var(--pb-r-lg); padding: 32px;
}
.pb-price-card--featured {
  border-color: var(--pb-navy); box-shadow: var(--pb-shadow-lg); position: relative;
}
.pb-price-card--featured::before {
  content: "Most chosen"; position: absolute; top: -11px; left: 32px;
  background: var(--pb-brand); color: var(--pb-brand-ink);
  font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 99px;
}
.pb-price {
  font-family: var(--pb-font-head); font-size: 42px; font-weight: 800;
  color: var(--pb-ink); margin: 8px 0 16px; letter-spacing: -.03em;
}
.pb-price span { font-size: 15px; font-weight: 500; color: var(--pb-faint); }

/* ------------------------------------------------------ tables */
.pb-compare { width: 100%; border-collapse: collapse; font-size: 15px;
  border: 1px solid var(--pb-line); border-radius: var(--pb-r); overflow: hidden; background: #fff; }
.pb-compare th, .pb-compare td { text-align: left; padding: 15px 18px; border-bottom: 1px solid var(--pb-line-soft); }
.pb-compare thead th {
  font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--pb-faint); font-weight: 800; background: var(--pb-mist);
}
.pb-compare tbody tr:last-child td { border-bottom: 0; }
.pb-compare tbody td:first-child { color: var(--pb-slate); font-weight: 600; }
.pb-compare .pb-yes { color: var(--pb-ink); font-weight: 600; }
.pb-compare .pb-yes::before { content: "✓ "; color: var(--pb-brand-deep); font-weight: 800; }
.pb-compare .pb-no { color: var(--pb-faint); }

/* --------------------------------------------------------- FAQ */
.pb-faq-list { max-width: 860px; }
.pb-faq-item {
  border: 1px solid var(--pb-line); border-radius: var(--pb-r);
  padding: 18px 22px; margin-bottom: 10px; background: #fff;
}
.pb-faq-item summary {
  cursor: pointer; font-family: var(--pb-font-head); font-weight: 700;
  color: var(--pb-ink); list-style: none; font-size: 16px;
}
.pb-faq-item summary::-webkit-details-marker { display: none; }
.pb-faq-item summary::after { content: "+"; float: right; color: var(--pb-brand-deep); font-weight: 700; }
.pb-faq-item[open] summary::after { content: "–"; }
.pb-faq-item p { margin: 14px 0 0; font-size: 15px; color: var(--pb-slate); max-width: 76ch; }

/* --------------------------------------------------------- CTA */
.pb-cta-band {
  background: var(--pb-navy);
  padding: 76px 0;
  text-align: center;
}
.pb-cta-band h2 { color: #fff; max-width: 22ch; margin-inline: auto; }
.pb-cta-band p { color: #C3D3EA; max-width: 60ch; margin: 0 auto 28px; }
.pb-cta-band .pb-btn-primary { background: var(--pb-brand); color: var(--pb-brand-ink); }
.pb-cta-band .pb-btn-primary:hover { background: var(--pb-brand-soft); }

/* -------------------------------------------------------- forms */
.pb-form { max-width: 640px; }
.pb-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .pb-form-row { grid-template-columns: 1fr; } }
.pb-field { margin-bottom: 16px; }
.pb-field label { display: block; font-size: 13px; font-weight: 600; color: var(--pb-ink); margin-bottom: 6px; }
.pb-field input, .pb-field select, .pb-field textarea {
  width: 100%; padding: 13px 15px; border-radius: var(--pb-r-sm);
  background-color: #fff; border: 1px solid var(--pb-line); color: var(--pb-ink);
  font-family: var(--pb-font-body); font-size: 15px;
}

/* Selects need their own treatment. The native arrow is drawn by the OS in a
   fixed colour, so it disappears against anything but a light field — and the
   option list is a separate OS-drawn popup that ignores the field's styling
   entirely. Both are handled explicitly. */
.pb-field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 42px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none'><path d='M1 1.5 6 6.5 11 1.5' stroke='%235B6B85' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 12px 8px;
  cursor: pointer;
}
.pb-field select option,
.pb-field select optgroup {
  background-color: #fff;
  color: var(--pb-ink);
}

.pb-field input[type="checkbox"] { accent-color: var(--pb-navy); }
.pb-field input:focus, .pb-field select:focus, .pb-field textarea:focus {
  outline: none; border-color: var(--pb-navy); box-shadow: 0 0 0 3px rgba(11,42,91,.10);
}
.pb-consent label { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--pb-slate); font-weight: 400; }
.pb-consent input { width: auto; margin-top: 3px; }
.pb-form-note { font-size: 12.5px; color: var(--pb-faint); margin-top: 14px; }

/* ------------------------------------------------------- misc */
.pb-breadcrumb { font-size: 13px; color: var(--pb-faint); margin-bottom: 24px; }
.pb-breadcrumb a { color: var(--pb-slate); text-decoration: none; }
.pb-breadcrumb a:hover { color: var(--pb-navy); }
.pb-breadcrumb span { margin: 0 8px; opacity: .5; }
.pb-breadcrumb strong { color: var(--pb-ink); font-weight: 600; }

.pb-city-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 8px 22px;
}
.pb-city-grid li { font-size: 14.5px; padding: 10px 0; border-bottom: 1px solid var(--pb-line-soft); }
.pb-city-grid a { color: var(--pb-body); text-decoration: none; }
.pb-city-grid a:hover { color: var(--pb-navy); }

.pb-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: none; }
@media (max-width: 820px) { .pb-two-col { grid-template-columns: 1fr; } }

.pb-quote {
  margin: 0; background: #fff; border: 1px solid var(--pb-line);
  border-radius: var(--pb-r); padding: 28px;
}
.pb-quote p { font-size: 16.5px; line-height: 1.65; color: var(--pb-ink); margin: 0 0 14px; }
.pb-quote cite { font-style: normal; font-size: 13.5px; color: var(--pb-faint); }

.pb-pagination { margin-top: 40px; display: flex; gap: 8px; flex-wrap: wrap; }
.pb-pagination .page-numbers {
  padding: 10px 15px; border: 1px solid var(--pb-line); border-radius: var(--pb-r-sm);
  color: var(--pb-ink); text-decoration: none; font-size: 14px; background: #fff;
}
.pb-pagination .page-numbers.current { background: var(--pb-navy); color: #fff; border-color: var(--pb-navy); }
.pb-pagination .page-numbers:hover { border-color: var(--pb-navy); }

/* --------------------------------------------------- entry copy */
.pb-entry h2 { margin-top: 40px; }
.pb-entry h3 { margin-top: 28px; }
.pb-entry ul, .pb-entry ol { color: var(--pb-body); padding-left: 22px; }
.pb-entry li { margin-bottom: 8px; }
.pb-entry blockquote {
  border-left: 3px solid var(--pb-brand); margin: 26px 0; padding: 4px 0 4px 22px;
  color: var(--pb-ink); font-size: 18px;
}
.pb-entry img { border-radius: var(--pb-r); }
.pb-entry code { background: var(--pb-mist); padding: 2px 6px; border-radius: 4px; font-size: 14px; }

/* ------------------------------------------------------ footer */
.pb-footer { background: var(--pb-dark); color: var(--pb-dark-text); padding: 68px 0 30px; }
.pb-footer a { color: var(--pb-dark-text); text-decoration: none; }
.pb-footer a:hover { color: var(--pb-brand); }
.pb-footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 34px; }
@media (max-width: 900px) { .pb-footer-grid { grid-template-columns: 1fr 1fr; } }
.pb-footer h4 {
  font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--pb-dark-muted); margin: 0 0 14px; font-weight: 800;
}
.pb-footer ul { list-style: none; margin: 0; padding: 0; }
.pb-footer li { margin-bottom: 9px; font-size: 14px; }
.pb-footer-brand p { color: var(--pb-dark-muted); font-size: 14px; max-width: 34ch; margin-top: 16px; }
.pb-footer-logo { height: 32px; width: auto; }
.pb-footer-bottom {
  margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--pb-dark-line);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: var(--pb-dark-muted);
}

@media (prefers-reduced-motion: reduce) {
  .pb-btn, .pb-card, .pb-menu a::after { transition: none; }
  .pb-btn:hover { transform: none; }
}

}
