body.public-page {
  --pp-cream: #f5f0e8;
  --pp-cream-dark: #ede7d9;
  --pp-ink: #1a1612;
  --pp-ink-mid: #3d3530;
  --pp-ink-soft: #6b6057;
  --pp-blue: #1b50f5;
  --pp-blue-hover: #0a38d4;
  --pp-blue-pale: #eef1fe;
  --pp-border: rgba(26, 22, 18, 0.12);
  --pp-border-strong: rgba(26, 22, 18, 0.22);
  --pp-gold: #e8a020;
}

body.public-page {
  background: var(--pp-cream);
  color: var(--pp-ink);
}

body.public-page .btn,
body.public-page button,
body.public-page input,
body.public-page select,
body.public-page textarea {
  font-family: "Outfit", sans-serif;
}

body.public-page .btn,
body.public-page button {
  text-transform: none;
  letter-spacing: 0;
}

body.public-page .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5vw;
}

body.public-page .site-header.public-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(245, 240, 232, 0.88);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--pp-border);
}

body.public-page .public-nav-shell {
  position: relative;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 5vw;
}

body.public-page .logo {
  gap: 9px;
}

body.public-page .logo-icon {
  width: 34px;
  height: 34px;
  background: var(--pp-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
body.public-page .logo-icon svg {
  width: 16px;
  height: 16px;
  fill: #f5f0e8;
}

body.public-page .logo-text {
  font-family: "Outfit", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

body.public-page .public-nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Hamburger button — hidden on desktop */
body.public-page .nav-hamburger {
  display: none;
  background: none;
  border: 1.5px solid var(--pp-border-strong);
  cursor: pointer;
  padding: 6px 8px;
  color: var(--pp-ink);
  border-radius: 7px;
  transition: background 0.15s, border-color 0.15s;
  margin-left: 4px;
  flex-shrink: 0;
}
body.public-page .nav-hamburger:hover {
  background: var(--pp-cream-dark);
  border-color: var(--pp-ink);
}
body.public-page .nav-hamburger svg { display: block; width: 18px; height: 18px; }
body.public-page .nav-hamburger .icon-close { display: none; }
body.public-page .site-header.nav-open .nav-hamburger { background: var(--pp-cream-dark); border-color: var(--pp-ink); }
body.public-page .site-header.nav-open .nav-hamburger .icon-menu { display: none; }
body.public-page .site-header.nav-open .nav-hamburger .icon-close { display: block; }

body.public-page .public-nav-pill {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--pp-ink-soft);
  text-decoration: none;
  padding: 5px 14px;
  border-radius: 20px;
  transition: background 0.15s, color 0.15s;
}

body.public-page .public-nav-pill:hover,
body.public-page .public-nav-pill.is-active {
  background: var(--pp-cream-dark);
  color: var(--pp-ink);
}

body.public-page .public-nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

body.public-page .public-nav-right .btn {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 7px;
}

body.public-page .public-nav-right .btn-ghost {
  color: var(--pp-ink-soft);
  background: transparent;
  border: 0;
}

body.public-page .public-nav-right .btn-ghost:hover {
  background: var(--pp-cream-dark);
  color: var(--pp-ink);
}

body.public-page .public-nav-right .btn-primary {
  background: var(--pp-ink);
  box-shadow: none;
}

body.public-page .public-nav-right .btn-primary:hover {
  background: var(--pp-ink-mid);
}

body.public-page main.public-blog-root,
body.public-page main.public-content-root {
  min-height: calc(100vh - 60px);
}

body.public-page .blog-hero,
body.public-page .post-hero,
body.public-page .content-hero {
  padding: 80px 5vw 40px;
  max-width: 1280px;
  margin: 0 auto;
}

body.public-page .blog-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
}

body.public-page .blog-hero h1,
body.public-page .post-hero h1,
body.public-page .content-hero h1 {
  font-family: "Playfair Display", serif;
  color: var(--pp-ink);
  letter-spacing: -0.02em;
}

body.public-page .blog-hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 900;
  margin: 0;
}

body.public-page .blog-count {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pp-ink-soft);
  margin-bottom: 8px;
}

body.public-page .blog-desc {
  font-size: 1rem;
  color: var(--pp-ink-soft);
  line-height: 1.75;
  font-weight: 300;
}

body.public-page .blog-tags {
  padding: 0 5vw 32px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

body.public-page .blog-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1.5px solid var(--pp-border);
  color: var(--pp-ink-soft);
  text-decoration: none;
}

body.public-page .blog-tag:hover,
body.public-page .blog-tag.active {
  background: var(--pp-ink);
  border-color: var(--pp-ink);
  color: var(--pp-cream);
}

body.public-page .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--pp-border);
  border-top: 1px solid var(--pp-border);
  border-bottom: 1px solid var(--pp-border);
  margin: 0 0 80px;
}

body.public-page .blog-card {
  background: var(--pp-cream);
  padding: 36px 32px;
  transition: background 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

body.public-page .blog-card:hover {
  background: var(--pp-cream-dark);
}

body.public-page .blog-card.featured {
  grid-column: span 2;
  background: var(--pp-cream-dark);
}

/* Even 2-col layout when fewer than 3 posts */
body.public-page .blog-grid.blog-grid-even {
  grid-template-columns: 1fr 1fr;
}
body.public-page .blog-grid.blog-grid-even .blog-card {
  font-size: 1rem;
}
body.public-page .blog-grid.blog-grid-even .bc-title {
  font-size: 1.5rem;
}

body.public-page .bc-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pp-blue);
  margin-bottom: 14px;
}

body.public-page .bc-title {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--pp-ink);
  margin-bottom: 10px;
}
body.public-page .bc-title em { font-style: italic; color: var(--pp-blue); }

body.public-page .blog-card.featured .bc-title {
  font-size: 1.7rem;
}

body.public-page .bc-excerpt {
  font-size: 0.95rem;
  color: var(--pp-ink-soft);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 20px;
}

body.public-page .bc-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

body.public-page .bc-date {
  font-size: 0.72rem;
  color: var(--pp-ink-soft);
}

body.public-page .bc-read {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--pp-blue);
}

body.public-page .post-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}

body.public-page .post-breadcrumb a,
body.public-page .post-breadcrumb span {
  font-size: 0.75rem;
  color: var(--pp-ink-soft);
  text-decoration: none;
}

body.public-page .post-breadcrumb .current {
  color: var(--pp-ink);
  font-weight: 500;
}

body.public-page .post-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pp-blue);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

body.public-page .post-tag::before {
  content: "";
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--pp-blue);
}

body.public-page .post-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 24px;
  max-width: 760px;
}

body.public-page .post-meta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

body.public-page .post-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

body.public-page .post-author-av {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--pp-ink);
  color: var(--pp-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 0.85rem;
}

body.public-page .post-author-name {
  font-size: 0.82rem;
  font-weight: 600;
}

body.public-page .post-author-date,
body.public-page .post-read-time {
  font-size: 0.75rem;
  color: var(--pp-ink-soft);
}

body.public-page .post-meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--pp-border-strong);
}

body.public-page .post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  padding: 0 5vw 72px;
  max-width: 1280px;
  margin: 0 auto;
}

body.public-page .post-lede {
  font-size: 1.1rem;
  color: var(--pp-ink-mid);
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--pp-border);
}

body.public-page .post-body h2 {
  margin: 36px 0 14px;
  font-size: 1.4rem;
}

body.public-page .post-body h3 {
  margin: 24px 0 10px;
  font-size: 1rem;
  font-weight: 600;
}

body.public-page .post-body p {
  font-size: 1rem;
  color: var(--pp-ink-soft);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 16px;
}

body.public-page .post-body ul,
body.public-page .post-body ol {
  margin: 0 0 16px 20px;
}

body.public-page .post-body li {
  font-size: 1rem;
  color: var(--pp-ink-soft);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 6px;
}

body.public-page .post-body blockquote {
  background: var(--pp-blue-pale);
  border-left: 3px solid var(--pp-blue);
  border-radius: 0 10px 10px 0;
  padding: 18px 20px;
  margin: 24px 0;
}

body.public-page .post-body blockquote p {
  margin: 0;
  color: var(--pp-ink-mid);
  font-weight: 400;
}

body.public-page .post-hero h1 em { font-style: italic; color: var(--pp-blue); }

body.public-page .post-callout {
  background: var(--pp-blue-pale);
  border-left: 3px solid var(--pp-blue);
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  margin: 28px 0;
}
body.public-page .post-callout p {
  color: var(--pp-ink-mid) !important;
  font-weight: 400 !important;
  margin-bottom: 0 !important;
}

body.public-page .post-numbered {
  counter-reset: post-step;
  margin: 0 0 20px;
  list-style: none;
  padding: 0;
}
body.public-page .post-numbered li {
  counter-increment: post-step;
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  align-items: flex-start;
}
body.public-page .post-numbered li::before {
  content: counter(post-step);
  min-width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--pp-ink);
  color: var(--pp-cream);
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
body.public-page .post-numbered li span { font-size: 1rem; color: var(--pp-ink-soft); line-height: 1.65; font-weight: 300; }
body.public-page .post-numbered li span strong { color: var(--pp-ink); font-weight: 600; }

body.public-page .post-img-placeholder {
  background: var(--pp-cream-dark);
  border: 1px solid var(--pp-border);
  border-radius: 12px;
  padding: 48px 32px;
  text-align: center;
  margin: 28px 0;
}
body.public-page .post-img-placeholder .pi-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pp-ink-soft);
  margin-bottom: 8px;
}
body.public-page .post-img-placeholder .pi-caption { font-size: 0.82rem; color: var(--pp-ink-soft); font-weight: 300; }

body.public-page .post-sidebar .sidebar-sticky {
  position: sticky;
  top: 80px;
}

body.public-page .sidebar-toc {
  background: var(--pp-cream-dark);
  border: 1px solid var(--pp-border);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 20px;
}

body.public-page .sidebar-toc-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pp-ink-soft);
  margin-bottom: 14px;
}

body.public-page .sidebar-toc a {
  display: block;
  font-size: 0.8rem;
  color: var(--pp-ink-soft);
  padding: 6px 0;
  border-bottom: 1px solid var(--pp-border);
  text-decoration: none;
}

body.public-page .sidebar-toc a:last-child {
  border-bottom: 0;
}

body.public-page .sidebar-toc a:hover {
  color: var(--pp-ink);
}

body.public-page .sidebar-toc a.active {
  color: var(--pp-blue);
  font-weight: 600;
}

body.public-page .sidebar-cta {
  background: var(--pp-ink);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
}

body.public-page .sidebar-cta h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 8px;
}

body.public-page .sidebar-cta p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  margin-bottom: 18px;
}

body.public-page .sidebar-cta a {
  display: block;
  background: var(--pp-blue);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  padding: 10px;
  border-radius: 8px;
}

body.public-page .sidebar-cta a:hover {
  background: var(--pp-blue-hover);
}

body.public-page .post-comments-wrap {
  margin-top: 40px;
  background: var(--pp-cream-dark);
  border: 1px solid var(--pp-border);
  border-radius: 14px;
  padding: 24px;
}

body.public-page .post-comments-wrap h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  margin: 0 0 16px;
}

body.public-page .blog-comment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

body.public-page .blog-comment-form input,
body.public-page .blog-comment-form textarea,
body.public-page .blog-reply-form input,
body.public-page .blog-reply-form textarea {
  width: 100%;
  border: 1.5px solid var(--pp-border);
  border-radius: 9px;
  padding: 11px 14px;
  background: var(--pp-cream);
  font-size: 0.88rem;
  color: var(--pp-ink);
}

body.public-page .blog-comment-form input:focus,
body.public-page .blog-comment-form textarea:focus,
body.public-page .blog-reply-form input:focus,
body.public-page .blog-reply-form textarea:focus {
  outline: none;
  border-color: var(--pp-blue);
  box-shadow: 0 0 0 3px rgba(27, 80, 245, 0.12);
}

body.public-page .blog-comment-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

body.public-page .blog-comment-actions .btn {
  background: var(--pp-blue);
  color: #fff;
  border-radius: 9px;
  border: 0;
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(27, 80, 245, 0.25);
}

body.public-page .blog-comment-actions .btn:hover {
  background: var(--pp-blue-hover);
}

body.public-page .blog-comment-card {
  border: 1px solid var(--pp-border);
  border-radius: 10px;
  background: var(--pp-cream);
  padding: 12px 14px;
}

body.public-page .blog-comment-reply {
  background: var(--pp-cream-dark);
}

body.public-page .blog-comment-avatar {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--pp-ink);
  color: var(--pp-cream);
  font-size: 0.76rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.public-page .blog-comment-time {
  display: block;
  margin-top: 2px;
  font-size: 0.72rem;
  color: var(--pp-ink-soft);
}

body.public-page .blog-comment-card p {
  margin: 0 0 8px;
  color: var(--pp-ink-soft);
  line-height: 1.6;
  white-space: pre-wrap;
}

body.public-page .blog-replies-wrap {
  margin-top: 8px;
  margin-left: 18px;
  padding-left: 12px;
}

body.public-page .blog-reply-btn,
body.public-page .blog-reply-cancel {
  background: transparent;
  color: var(--pp-blue);
  border: 1.5px solid var(--pp-blue);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 0.72rem;
  font-weight: 600;
}

body.public-page .blog-reply-btn:hover,
body.public-page .blog-reply-cancel:hover {
  background: var(--pp-blue-pale);
}

body.public-page .blog-reply-form .btn,
body.public-page .blog-comments-load-more-wrap .btn {
  background: var(--pp-blue);
  border: 0;
  color: #fff;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.75rem;
}

body.public-page .blog-comments-load-more-wrap {
  margin-top: 12px;
  display: flex;
  justify-content: center;
}

body.public-page .content-hero .sk {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pp-blue);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

body.public-page .content-hero .sk::before {
  content: "";
  width: 20px;
  height: 1.5px;
  background: var(--pp-blue);
}

body.public-page .content-hero h1 {
  font-size: clamp(2rem, 3.7vw, 3.3rem);
  font-weight: 900;
  margin: 0 0 12px;
}

body.public-page .content-hero .ph-sub {
  font-size: 1rem;
  color: var(--pp-ink-soft);
  line-height: 1.75;
  font-weight: 300;
  max-width: 700px;
}

body.public-page .content-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  padding: 0 5vw 80px;
  max-width: 1280px;
  margin: 0 auto;
}

body.public-page .content-nav {
  position: sticky;
  top: 80px;
  height: fit-content;
}

body.public-page .content-nav-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pp-ink-soft);
  margin-bottom: 12px;
}

body.public-page .content-nav a {
  display: block;
  font-size: 0.82rem;
  color: var(--pp-ink-soft);
  padding: 7px 14px;
  border-radius: 7px;
  text-decoration: none;
  border-left: 2px solid transparent;
  margin-bottom: 2px;
}

body.public-page .content-nav a:hover,
body.public-page .content-nav a.active {
  background: var(--pp-cream-dark);
  color: var(--pp-ink);
  border-left-color: var(--pp-blue);
}

body.public-page .content-body {
  min-width: 0;
}

body.public-page .policy-last-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--pp-ink-soft);
  background: var(--pp-cream-dark);
  border: 1px solid var(--pp-border);
  border-radius: 7px;
  padding: 6px 14px;
  margin-bottom: 24px;
}

body.public-page .content-body h2 {
  font-size: 1.6rem;
  margin: 0 0 16px;
}

body.public-page .content-body h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--pp-ink);
  margin: 20px 0 8px;
}

body.public-page .content-body p,
body.public-page .content-body li {
  font-size: 0.88rem;
  color: var(--pp-ink-soft);
  line-height: 1.8;
  font-weight: 300;
}

body.public-page .content-body p {
  margin-bottom: 12px;
}

body.public-page .content-body ul,
body.public-page .content-body ol {
  margin: 0 0 12px 20px;
}

body.public-page .content-body li {
  margin-bottom: 4px;
}

body.public-page .content-body a {
  color: var(--pp-blue);
}

body.public-page .public-page-footer {
  border-top: 1px solid var(--pp-border);
  padding: 32px 5vw 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

body.public-page .public-page-footer .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

body.public-page .public-page-footer .footer-brand .logo-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
}
body.public-page .public-page-footer .footer-brand .logo-icon svg {
  width: 12px;
  height: 12px;
}
body.public-page .public-page-footer .footer-brand .logo-text {
  font-size: 0.9rem;
}

body.public-page .public-page-footer .footer-copy {
  font-size: 0.75rem;
  color: var(--pp-ink-soft);
}

body.public-page .public-page-footer .footer-links {
  display: flex;
  gap: 18px;
}

body.public-page .public-page-footer .footer-links a {
  font-size: 0.78rem;
  color: var(--pp-ink-soft);
  text-decoration: none;
  text-transform: none;
  letter-spacing: normal;
}

body.public-page .public-page-footer .footer-links a:hover {
  color: var(--pp-ink);
}

@media (max-width: 1024px) {
  body.public-page .blog-hero {
    grid-template-columns: 1fr;
  }

  body.public-page .post-layout,
  body.public-page .content-layout {
    grid-template-columns: 1fr;
  }

  body.public-page .post-sidebar,
  body.public-page .content-nav {
    display: none;
  }
}

@media (max-width: 768px) {
  body.public-page .public-nav-shell {
    min-height: auto;
    flex-wrap: nowrap;
    position: relative;
  }

  /* Hide centre nav by default on mobile — shown via dropdown */
  body.public-page .public-nav-center {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(245, 240, 232, 0.97);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid var(--pp-border-strong);
    padding: 10px 5vw 16px;
    gap: 2px;
    z-index: 199;
    box-shadow: 0 8px 28px rgba(26, 22, 18, 0.1);
    transform: none;
    animation: navDropIn 0.18s ease;
  }

  @keyframes navDropIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  body.public-page .site-header.nav-open .public-nav-center {
    display: flex;
  }

  /* Nav pill overrides inside the dropdown */
  body.public-page .site-header.nav-open .public-nav-pill {
    padding: 11px 14px;
    border-radius: 8px;
    font-size: 0.88rem;
    border-left: 2px solid transparent;
    color: var(--pp-ink-soft);
  }

  body.public-page .site-header.nav-open .public-nav-pill:hover,
  body.public-page .site-header.nav-open .public-nav-pill.is-active {
    background: var(--pp-cream-dark);
    color: var(--pp-ink);
    border-left-color: var(--pp-blue);
  }

  /* Show hamburger */
  body.public-page .nav-hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  body.public-page .blog-grid,
  body.public-page .blog-grid.blog-grid-even {
    grid-template-columns: 1fr;
  }

  body.public-page .blog-card.featured {
    grid-column: span 1;
  }

  body.public-page .blog-comment-grid {
    grid-template-columns: 1fr;
  }

  body.public-page .public-page-footer {
    padding-bottom: 84px;
  }
}

/* ═══════════════════════════════════════════
   SHARED — SK KICKER, PAGE HERO, UTILS
═══════════════════════════════════════════ */
body.public-page .sk {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pp-blue);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
body.public-page .sk::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--pp-blue);
  flex-shrink: 0;
}
body.public-page .page-hero {
  padding: 80px 5vw 60px;
  max-width: 1280px;
  margin: 0 auto;
}
body.public-page .ph-kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pp-ink-soft);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
body.public-page .ph-kicker::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--pp-ink-soft);
  flex-shrink: 0;
}
body.public-page .ph-sub {
  font-size: 1rem;
  color: var(--pp-ink-soft);
  line-height: 1.75;
  font-weight: 300;
  max-width: 700px;
}
body.public-page .pp-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--pp-ink);
  margin-bottom: 24px;
}
body.public-page .pp-h1 em,
body.public-page .page-hero h1 em,
body.public-page .content-hero h1 em {
  font-style: italic;
  color: var(--pp-blue);
}
body.public-page .pp-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--pp-ink);
}
body.public-page .pp-h2 em { font-style: italic; color: var(--pp-blue); }
body.public-page .ss {
  font-size: 1rem;
  color: var(--pp-ink-soft);
  line-height: 1.7;
  max-width: 540px;
  margin-top: 12px;
  font-weight: 300;
}
body.public-page .pp-divider {
  border: none;
  height: 1px;
  background: var(--pp-border);
  margin: 0 0 56px;
}

/* ═══════════════════════════════════════════
   SHARED — CTA STRIP
═══════════════════════════════════════════ */
body.public-page .pp-cta-strip {
  margin: 0 5vw 80px;
  background: var(--pp-ink);
  border-radius: 16px;
  padding: 56px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
body.public-page .pp-cta-strip h2 {
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
body.public-page .pp-cta-strip h2 em { font-style: italic; color: #6B8EFF; }
body.public-page .pp-cta-strip-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  flex-shrink: 0;
}
body.public-page .btn-cta-main {
  background: var(--pp-blue);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: 9px;
  padding: 13px 26px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
  box-shadow: 0 2px 12px rgba(27,80,245,0.4);
}
body.public-page .btn-cta-main:hover { background: var(--pp-blue-hover); }
body.public-page .btn-cta-ghost {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}
body.public-page .btn-cta-ghost:hover { color: white; }

/* ═══════════════════════════════════════════
   BLOG — RELATED POSTS
═══════════════════════════════════════════ */
body.public-page .post-related {
  padding: 0 5vw 80px;
  max-width: 1280px;
  margin: 0 auto;
}
body.public-page .related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--pp-border);
  border: 1px solid var(--pp-border);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 32px;
}
body.public-page .related-card {
  background: var(--pp-cream);
  padding: 28px 24px;
  transition: background 0.2s;
  text-decoration: none;
  display: block;
  color: inherit;
}
body.public-page .related-card:hover { background: var(--pp-cream-dark); }
body.public-page .rc-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pp-blue);
  margin-bottom: 10px;
}
body.public-page .rc-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--pp-ink);
  line-height: 1.3;
}
body.public-page .rc-title em { font-style: italic; color: var(--pp-blue); }

/* ═══════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════ */
body.public-page .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--pp-border);
  border: 1px solid var(--pp-border);
  border-radius: 14px;
  overflow: hidden;
  margin: 0 5vw 80px;
}
body.public-page .about-cell {
  background: var(--pp-cream);
  padding: 44px 40px;
}
body.public-page .about-cell.accent { background: var(--pp-cream-dark); }
body.public-page .about-cell.dark { background: var(--pp-ink); }
body.public-page .about-cell .ac-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--pp-blue);
  line-height: 1;
  margin-bottom: 8px;
}
body.public-page .about-cell h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--pp-ink);
  margin-bottom: 10px;
}
body.public-page .about-cell.dark h3 { color: white; }
body.public-page .about-cell p {
  font-size: 0.96rem;
  color: var(--pp-ink-soft);
  line-height: 1.7;
  font-weight: 300;
}
body.public-page .about-cell.dark p { color: rgba(255,255,255,0.45); }
body.public-page .about-cell.wide {
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 60px;
}
body.public-page .about-cell.wide .ac-left { flex: 0 0 40%; }
body.public-page .founders-section {
  padding: 0 5vw 80px;
  max-width: 1280px;
  margin: 0 auto;
}
body.public-page .founders-section .sk { margin-bottom: 12px; }
body.public-page .founder-intro {
  font-size: 1.05rem;
  color: var(--pp-ink-soft);
  line-height: 1.8;
  max-width: 560px;
  font-weight: 300;
  margin: 12px 0 40px;
}
body.public-page .founders-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
body.public-page .founder-card {
  background: var(--pp-cream-dark);
  border: 1px solid var(--pp-border);
  border-radius: 14px;
  padding: 32px 28px;
}
body.public-page .founder-avatar {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--pp-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
body.public-page .founder-avatar span {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--pp-cream);
}
body.public-page .founder-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--pp-ink);
  margin-bottom: 3px;
}
body.public-page .founder-role {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pp-blue);
  margin-bottom: 14px;
}
body.public-page .founder-bio {
  font-size: 0.95rem;
  color: var(--pp-ink-soft);
  line-height: 1.7;
  font-weight: 300;
}
body.public-page .values-section {
  background: var(--pp-ink);
  padding: 80px 5vw;
}
body.public-page .values-inner {
  max-width: 1280px;
  margin: 0 auto;
}
body.public-page .values-section .sk { color: #6B8EFF; }
body.public-page .values-section .sk::before { background: #6B8EFF; }
body.public-page .values-section h2 { color: white; margin-bottom: 48px; }
body.public-page .values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  overflow: hidden;
}
body.public-page .value-item {
  background: rgba(255,255,255,0.02);
  padding: 36px 28px;
  transition: background 0.2s;
}
body.public-page .value-item:hover { background: rgba(255,255,255,0.05); }
body.public-page .vi-icon {
  width: 36px;
  height: 36px;
  background: rgba(107,142,255,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
body.public-page .vi-icon svg { width: 18px; height: 18px; fill: #6B8EFF; }
body.public-page .value-item h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
}
body.public-page .value-item p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.65;
  font-weight: 300;
}

/* ═══════════════════════════════════════════
   FAQ PAGE
═══════════════════════════════════════════ */
body.public-page .faq-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  padding: 0 5vw 80px;
  max-width: 1280px;
  margin: 0 auto;
}
body.public-page .faq-nav {
  position: sticky;
  top: 80px;
  height: fit-content;
}
body.public-page .faq-nav-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pp-ink-soft);
  margin-bottom: 12px;
}
body.public-page .faq-nav-item {
  display: block;
  font-size: 0.82rem;
  color: var(--pp-ink-soft);
  padding: 7px 14px;
  border-radius: 7px;
  text-decoration: none;
  border-left: 2px solid transparent;
  margin-bottom: 2px;
  transition: all 0.15s;
}
body.public-page .faq-nav-item:hover,
body.public-page .faq-nav-item.active {
  background: var(--pp-cream-dark);
  color: var(--pp-ink);
  border-left-color: var(--pp-blue);
}
body.public-page .faq-group { margin-bottom: 48px; scroll-margin-top: 80px; }
body.public-page .policy-section { scroll-margin-top: 80px; }
body.public-page .faq-group-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pp-blue);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
body.public-page .faq-group-title::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--pp-blue);
  flex-shrink: 0;
}
body.public-page .faq-item { border-bottom: 1px solid var(--pp-border); }
body.public-page .faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--pp-ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
body.public-page .faq-q:hover { color: var(--pp-blue); }
body.public-page .faq-chevron {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--pp-cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s, background 0.2s;
}
body.public-page .faq-chevron svg { width: 10px; height: 10px; fill: none; stroke: var(--pp-ink-soft); }
body.public-page .faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--pp-blue-pale); }
body.public-page .faq-item.open .faq-chevron svg { stroke: var(--pp-blue); }
body.public-page .faq-a {
  display: none;
  padding: 0 0 20px;
  font-size: 0.95rem;
  color: var(--pp-ink-soft);
  line-height: 1.75;
  font-weight: 300;
  max-width: 600px;
}
body.public-page .faq-item.open .faq-a { display: block; }
body.public-page .faq-a strong { font-weight: 600; color: var(--pp-ink); }

/* ═══════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════ */
body.public-page .contact-hero {
  padding: 120px 5vw 60px;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
body.public-page .contact-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
body.public-page .contact-hero h1 em { font-style: italic; color: var(--pp-blue); }
body.public-page .contact-hero-sub {
  font-size: 1rem;
  color: var(--pp-ink-soft);
  line-height: 1.75;
  font-weight: 300;
  max-width: 400px;
  margin-bottom: 36px;
}
body.public-page .contact-channels { display: flex; flex-direction: column; gap: 12px; }
body.public-page .contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--pp-cream-dark);
  border: 1px solid var(--pp-border);
  border-radius: 12px;
  padding: 18px 20px;
  transition: border-color 0.15s;
  text-decoration: none;
}
body.public-page .contact-channel:hover { border-color: var(--pp-ink); }
body.public-page .cc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
body.public-page .cc-icon.email { background: var(--pp-blue-pale); }
body.public-page .cc-icon.whatsapp { background: #D1FAE5; }
body.public-page .cc-icon.phone { background: #FEF3C7; }
body.public-page .cc-icon svg { width: 18px; height: 18px; }
body.public-page .cc-icon.email svg { fill: var(--pp-blue); }
body.public-page .cc-icon.whatsapp svg { fill: #065F46; }
body.public-page .cc-icon.phone svg { fill: #92400E; }
body.public-page .cc-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pp-ink-soft);
  margin-bottom: 2px;
}
body.public-page .cc-value { font-size: 0.9rem; font-weight: 500; color: var(--pp-ink); }
body.public-page .contact-form-card {
  background: var(--pp-cream-dark);
  border: 1px solid var(--pp-border);
  border-radius: 16px;
  padding: 40px 36px;
}
body.public-page .cf-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--pp-ink);
  margin-bottom: 4px;
}
body.public-page .cf-sub { font-size: 0.95rem; color: var(--pp-ink-soft); margin-bottom: 28px; font-weight: 300; }
body.public-page .cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
body.public-page .cf-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
body.public-page .cf-field label { font-size: 0.75rem; font-weight: 600; color: var(--pp-ink-mid); letter-spacing: 0.04em; }
body.public-page .cf-field input,
body.public-page .cf-field select,
body.public-page .cf-field textarea {
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  color: var(--pp-ink);
  background: var(--pp-cream);
  border: 1.5px solid var(--pp-border);
  border-radius: 9px;
  padding: 11px 14px;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  width: 100%;
}
body.public-page .cf-field input:focus,
body.public-page .cf-field select:focus,
body.public-page .cf-field textarea:focus {
  border-color: var(--pp-blue);
  box-shadow: 0 0 0 3px rgba(27,80,245,0.1);
}
body.public-page .cf-field textarea { resize: vertical; min-height: 90px; }
body.public-page .cf-feedback { font-size: 0.85rem; margin: 0 0 12px; display: none; }
body.public-page .cf-feedback.error { color: #b42318; }
body.public-page .cf-feedback.success { color: var(--pp-green, #1a7a50); }
body.public-page .cf-submit {
  background: var(--pp-blue);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: 9px;
  padding: 13px 26px;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
  box-shadow: 0 2px 12px rgba(27,80,245,0.3);
}
body.public-page .cf-submit:hover { background: var(--pp-blue-hover); }
body.public-page .cf-submit:disabled { opacity: 0.65; cursor: not-allowed; }
body.public-page .contact-support {
  padding: 0 5vw 80px;
  max-width: 1280px;
  margin: 0 auto;
}
body.public-page .support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--pp-border);
  border: 1px solid var(--pp-border);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 32px;
}
body.public-page .support-item {
  background: var(--pp-cream);
  padding: 36px 28px;
  transition: background 0.2s;
  text-decoration: none;
  display: block;
  color: inherit;
}
body.public-page .support-item:hover { background: var(--pp-cream-dark); }
body.public-page .si-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--pp-border-strong);
  line-height: 1;
  margin-bottom: 16px;
}
body.public-page .support-item h3 { font-size: 1rem; font-weight: 600; color: var(--pp-ink); margin-bottom: 8px; }
body.public-page .support-item p { font-size: 0.95rem; color: var(--pp-ink-soft); line-height: 1.65; font-weight: 300; }

/* ═══════════════════════════════════════════
   POLICIES PAGE
═══════════════════════════════════════════ */
body.public-page .policies-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  padding: 0 5vw 80px;
  max-width: 1280px;
  margin: 0 auto;
}
body.public-page .policy-nav {
  position: sticky;
  top: 80px;
  height: fit-content;
}
body.public-page .policy-nav-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pp-ink-soft);
  margin-bottom: 12px;
}
body.public-page .policy-nav-item {
  display: block;
  font-size: 0.82rem;
  color: var(--pp-ink-soft);
  padding: 7px 14px;
  border-radius: 7px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
  border-left: 2px solid transparent;
  margin-bottom: 2px;
}
body.public-page .policy-nav-item:hover,
body.public-page .policy-nav-item.active {
  background: var(--pp-cream-dark);
  color: var(--pp-ink);
  border-left-color: var(--pp-blue);
}
body.public-page .policy-body { min-width: 0; }
body.public-page .policy-section { padding-top: 8px; }
body.public-page .policy-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 8px 0 16px;
  color: var(--pp-ink);
}
body.public-page .policy-section h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--pp-ink);
  margin: 24px 0 8px;
}
body.public-page .policy-section p {
  font-size: 0.97rem;
  color: var(--pp-ink-mid);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 12px;
}
body.public-page .policy-section ul {
  margin: 0 0 16px 0;
  padding-left: 20px;
}
body.public-page .policy-section ul li {
  font-size: 0.97rem;
  color: var(--pp-ink-mid);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 6px;
}
body.public-page .policy-section strong { font-weight: 600; color: var(--pp-ink); }

/* ═══════════════════════════════════════════
   RESPONSIVE ADDITIONS
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  body.public-page .about-cell.wide { grid-column: span 1; flex-direction: column; gap: 20px; }
  body.public-page .faq-layout { grid-template-columns: 1fr; }
  body.public-page .faq-nav { display: none; }
  body.public-page .contact-hero { grid-template-columns: 1fr; }
  body.public-page .founders-row { grid-template-columns: 1fr; }
  body.public-page .policies-layout { grid-template-columns: 1fr; }
  body.public-page .policy-nav { display: none; }
}
@media (max-width: 768px) {
  body.public-page .about-grid { grid-template-columns: 1fr; }
  body.public-page .about-cell.wide { grid-column: span 1; }
  body.public-page .values-grid { grid-template-columns: 1fr; }
  body.public-page .support-grid { grid-template-columns: 1fr; }
  body.public-page .related-grid { grid-template-columns: 1fr; }
  body.public-page .cf-row { grid-template-columns: 1fr; }
  body.public-page .pp-cta-strip { padding: 40px 28px; }
}
