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

:root {
  --yellow:      #FFD000;
  --yellow-deep: #E8B800;
  --dark:        #0F1117;
  --body-bg:     #F7F6F2;
  --text:        #0F1117;
  --muted:       #6B6F7C;
  --border:      #E4E3DF;
  --green:       #2AA96B;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--body-bg);
  color: var(--text);
}

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  background: rgba(247,246,242,.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-badge {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif; font-size: 18px; color: var(--dark);
}
.nav-logo-name { font-size: 15px; font-weight: 700; color: var(--dark); letter-spacing: -.3px; }
.nav-logo-sub { font-size: 10px; color: var(--muted); letter-spacing: .5px; text-transform: uppercase; }

.nav-back {
  display: flex; align-items: center; gap: 6px;
  text-decoration: none; color: var(--muted);
  font-size: 13px; font-weight: 600; transition: color .2s;
}
.nav-back:hover { color: var(--dark); }

/* HERO */
.pp-hero {
  background: var(--dark);
  padding: 80px 5vw 64px;
  position: relative; overflow: hidden;
}
.pp-hero::after {
  content: '';
  position: absolute; bottom: -80px; right: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: var(--yellow); opacity: .08;
}
.pp-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--yellow);
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.pp-eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--yellow); }
.pp-hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(40px, 6vw, 80px);
  color: #fff; line-height: 1; letter-spacing: -.5px;
  margin-bottom: 24px; position: relative; z-index: 1;
}
.pp-meta {
  display: flex; gap: 32px; flex-wrap: wrap;
  font-size: 13px; color: rgba(255,255,255,.45);
  position: relative; z-index: 1;
}
.pp-meta span strong { color: rgba(255,255,255,.75); font-weight: 600; }

/* LAYOUT */
.pp-layout {
  display: grid; grid-template-columns: 260px 1fr;
  max-width: 1300px; margin: 0 auto;
}

/* SIDEBAR */
.pp-sidebar {
  padding: 48px 28px;
  border-right: 1px solid var(--border);
  position: sticky; top: 68px;
  height: calc(100vh - 68px); overflow-y: auto;
  background: #fff;
}
.pp-sidebar h3 {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted); margin-bottom: 16px;
}
.pp-sidebar ul { list-style: none; }
.pp-sidebar ul li { margin-bottom: 2px; }
.pp-sidebar ul li a {
  display: block; padding: 8px 12px;
  text-decoration: none; color: var(--muted);
  font-size: 13px; line-height: 1.4; font-weight: 500;
  border-radius: 8px;
  transition: background .2s, color .2s;
}
.pp-sidebar ul li a:hover { background: rgba(255,208,0,.12); color: var(--dark); }

/* CONTENT */
.pp-content { padding: 60px 5vw 100px; max-width: 800px; }

.pp-intro-box {
  padding: 24px 28px;
  background: rgba(255,208,0,.1);
  border: 1px solid rgba(255,208,0,.3);
  border-left: 4px solid var(--yellow-deep);
  border-radius: 12px; margin-bottom: 48px;
  font-size: 15px; color: var(--muted); line-height: 1.7;
}
.pp-intro-box strong { color: var(--dark); font-weight: 700; }

.pp-section { margin-bottom: 56px; }
.pp-section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--yellow-deep);
  margin-bottom: 10px;
}
.pp-section-tag::before { content: ''; width: 16px; height: 2px; background: var(--yellow-deep); }

.pp-section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 28px; color: var(--dark);
  margin-bottom: 20px; padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.pp-section p {
  font-size: 15px; color: var(--muted); line-height: 1.85;
  font-weight: 300; margin-bottom: 14px;
}
.pp-section p:last-child { margin-bottom: 0; }
.pp-section ul { margin: 14px 0; list-style: none; }
.pp-section ul li {
  font-size: 15px; color: var(--muted); line-height: 1.7;
  padding: 10px 0 10px 24px; position: relative;
  border-bottom: 1px solid var(--border);
}
.pp-section ul li:last-child { border-bottom: none; }
.pp-section ul li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--yellow-deep); font-size: 13px; top: 10px;
}
.pp-section ul li strong { color: var(--dark); font-weight: 600; }

.pp-highlight {
  padding: 20px 24px;
  background: #fff; border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  border-radius: 10px; margin: 20px 0;
  font-size: 14px; color: var(--muted); line-height: 1.7;
}
.pp-highlight strong { color: var(--dark); font-weight: 600; }

.pp-contact-card {
  background: var(--dark); border-radius: 16px;
  padding: 36px; margin-top: 20px;
}
.pp-contact-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px; color: #fff; margin-bottom: 20px;
}
.pp-contact-row { display: flex; flex-direction: column; gap: 10px; }
.pp-contact-item { font-size: 14px; color: rgba(255,255,255,.55); }
.pp-contact-item strong { color: rgba(255,255,255,.85); font-weight: 600; display: block; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 2px; }
.pp-contact-item a { color: var(--yellow); text-decoration: none; }
.pp-contact-item a:hover { text-decoration: underline; }

/* FOOTER */
footer {
  background: var(--dark);
  padding: 28px 5vw;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
footer span { font-size: 12px; color: rgba(255,255,255,.25); }
footer a { font-size: 12px; color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
footer a:hover { color: var(--yellow); }

@media (max-width: 768px) {
  .pp-layout { grid-template-columns: 1fr; }
  .pp-sidebar { position: static; height: auto; border-right: none; border-bottom: 1px solid var(--border); }
}
