/* Source: template-privacy-policy.php */
/* ═══════════════════════════════════════
   PRIVACY POLICY — ULTRA PREMIUM
   Brand Manual: #60091A · #F4EEE2 · #D9CDBA · #217C54 · #7E4939 · #101010
   Fonts: Balkind + Inter
═══════════════════════════════════════ */
:root{
  --pp-red:#60091A;--pp-cream:#F4EEE2;--pp-beige:#D9CDBA;
  --pp-green:#217C54;--pp-brown:#7E4939;--pp-black:#101010;
  --pp-gold:#ffffff;--pp-espresso:#101010;--pp-cognac:#8B5E3C;
  --pp-champagne:#F5EDE3;--pp-lt:#E8E2DA;--pp-warm:#8A7E74;
  --fd:'Balkind',Georgia,serif;
  --fb:'Inter',system-ui,sans-serif;
}

/* Hero */
.pp-hero {
  background: linear-gradient(135deg,#120A05 0%,#1F1009 45%,#2D1A0C 100%);
  padding: 88px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pp-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 110%,rgba(96,9,26,.35) 0%,transparent 65%);
  pointer-events: none;
}
.pp-hero .container { position: relative; z-index: 2; }

.pp-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  justify-content: flex-start;
  font-family: var(--fb);
  font-size: 12px; color: rgba(245,237,227,.4);
  margin-bottom: 28px;
}
.pp-breadcrumb a { color: var(--pp-gold); text-decoration: none; }
.pp-breadcrumb .sep { opacity: .35; }

.pp-eyebrow {
  display: inline-block;
  font-family: var(--fb);
  font-size: 10px; font-weight: 400;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--pp-gold);
  margin-bottom: 18px;
}
.pp-hero h1 {
  font-family: var(--fd);
  font-size: clamp(33px,4vw,56px);
  font-weight: 200; line-height: 1.1;
  color: var(--pp-champagne);
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.pp-hero h1 em { font-style: italic; color: var(--pp-gold); }
.pp-hero-sub {
  font-family: var(--fb);
  font-size: 15px; color: rgba(245,237,227,.5);
  max-width: 520px; margin: 0 auto 0;
  line-height: 1.7;
}
/* Last updated badge */
.pp-updated {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 24px;
  background: rgba(201,169,110,.08);
  border: 1px solid rgba(201,169,110,.2);
  border-radius: 50px;
  padding: 7px 18px;
  font-family: var(--fb);
  font-size: 11px; color: rgba(245,237,227,.45);
  letter-spacing: .5px;
}
.pp-updated::before { content: ''; width: 5px; height: 5px; background: var(--pp-gold); border-radius: 50%; }

/* Layout */
.pp-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 32px 96px;
  align-items: start;
}

/* Sticky sidebar nav */
.pp-sidebar {
  position: sticky;
  top: 100px;
}
.pp-nav-card {
  background: var(--pp-cream);
  border: 1px solid var(--pp-lt);
  border-radius: 18px;
  padding: 28px;
}
.pp-nav-title {
  font-family: var(--fb);
  font-size: 9px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--pp-cognac);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--pp-lt);
}
.pp-nav-list { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.pp-nav-list li a {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--fb);
  font-size: 13px; font-weight: 500;
  color: var(--pp-espresso);
  padding: 9px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: all .2s;
}
.pp-nav-list li a:hover,
.pp-nav-list li a.active {
  background: #fff;
  color: var(--pp-red);
}
.pp-nav-list li a .pp-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--pp-lt);
  flex-shrink: 0;
  transition: background .2s;
}
.pp-nav-list li a:hover .pp-dot,
.pp-nav-list li a.active .pp-dot { background: var(--pp-red); }

/* Contact card in sidebar */
.pp-contact-card {
  background: var(--pp-espresso);
  border-radius: 18px;
  padding: 24px;
  margin-top: 16px;
  text-align: center;
}
.pp-contact-card h4 {
  font-family: var(--fd);
  font-size: 18px; font-weight: 600;
  color: var(--pp-champagne);
  margin-bottom: 8px;
}
.pp-contact-card p {
  font-family: var(--fb);
  font-size: 12px; color: rgba(245,237,227,.45);
  margin-bottom: 16px; line-height: 1.55;
}
.pp-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #217C54; color: #fff;
  padding: 11px 18px; border-radius: 8px;
  font-family: var(--fb);
  font-size: 12px; font-weight: 700;
  text-decoration: none;
  margin-bottom: 10px;
}
.pp-email-btn {
  display: flex; align-items: center; justify-content: center;
  color: rgba(245,237,227,.5);
  font-family: var(--fb);
  font-size: 11px;
  text-decoration: none;
}

/* Main content */
.pp-section {
  margin-bottom: 56px;
  scroll-margin-top: 100px;
}
.pp-section:last-child { margin-bottom: 0; }

/* Section heading */
.pp-section-num {
  font-family: var(--fb);
  font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--pp-cognac);
  margin-bottom: 8px;
  display: block;
}
.pp-section h2 {
  font-family: var(--fd);
  font-size: clamp(22px,3vw,32px);
  font-weight: 600; line-height: 1.2;
  color: var(--pp-espresso);
  margin-bottom: 0;
}
.pp-divider {
  width: 40px; height: 1.5px;
  background: linear-gradient(90deg,var(--pp-gold),var(--pp-cognac));
  margin: 16px 0 24px;
}
.pp-section p {
  font-family: var(--fb);
  font-size: 15px; line-height: 1.8;
  color: var(--pp-warm);
  margin-bottom: 16px;
}
.pp-section p:last-child { margin-bottom: 0; }

/* Highlight box */
.pp-highlight {
  background: var(--pp-cream);
  border: 1px solid var(--pp-lt);
  border-left: 3px solid var(--pp-red);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 24px 0;
  font-family: var(--fb);
  font-size: 14px; line-height: 1.7;
  color: var(--pp-espresso);
}
.pp-highlight strong { color: var(--pp-red); }

/* List items */
.pp-list {
  list-style: none; padding: 0; margin: 16px 0;
  display: flex; flex-direction: column; gap: 10px;
}
.pp-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-family: var(--fb);
  font-size: 15px; line-height: 1.65;
  color: var(--pp-warm);
}
.pp-list li::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--pp-red);
  flex-shrink: 0; margin-top: 8px;
}

/* Info grid */
.pp-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0;
}
.pp-info-box {
  background: var(--pp-cream);
  border: 1px solid var(--pp-lt);
  border-radius: 14px;
  padding: 18px 20px;
}
.pp-info-box-lbl {
  font-family: var(--fb);
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--pp-cognac);
  margin-bottom: 8px;
  display: block;
}
.pp-info-box p {
  font-family: var(--fb);
  font-size: 13px; color: var(--pp-espresso);
  line-height: 1.55; margin: 0;
}

/* Separator between sections */
.pp-sep {
  width: 100%; height: 1px;
  background: var(--pp-lt);
  margin: 56px 0;
}

/* Contact section */
.pp-contact-section {
  background: linear-gradient(135deg,var(--pp-espresso),#2D1A0C);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 64px;
}
.pp-contact-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 110%,rgba(96,9,26,.3) 0%,transparent 65%);
}
.pp-contact-section > * { position: relative; z-index: 2; }
.pp-contact-section h3 {
  font-family: var(--fd);
  font-size: clamp(22px,3vw,34px);
  font-weight: 300; color: var(--pp-champagne);
  margin-bottom: 12px;
}
.pp-contact-section p {
  font-family: var(--fb);
  font-size: 15px; color: rgba(245,237,227,.5);
  margin-bottom: 28px; line-height: 1.65;
}
.pp-contact-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.pp-cta-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--pp-gold); color: var(--pp-espresso);
  padding: 14px 32px; border-radius: 6px;
  font-family: var(--fb);
  font-size: 14px; font-weight: 400; letter-spacing: 1px;
   text-decoration: none;
}
.pp-cta-email {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(245,237,227,.2); color: var(--pp-champagne);
  padding: 14px 28px; border-radius: 6px;
  font-family: var(--fb);
  font-size: 14px; font-weight: 400; letter-spacing: 1px;
   text-decoration: none;
}

/* Responsive */
@media(max-width:900px){
  .pp-layout { grid-template-columns: 1fr; gap: 40px; }
  .pp-sidebar { position: static; }
  .pp-info-grid { grid-template-columns: 1fr; }
  
}
@media(max-width:600px){
  .pp-layout { padding: 48px 20px 64px; }
  .pp-hero { padding: 64px 0 52px; }
  .pp-contact-section { padding: 36px 24px; }
  .pp-contact-btns { flex-direction: column; align-items: center; }
  .pp-contact-btns a { width: 100%; max-width: 300px; justify-content: center; }
  
}

