:root {
  --pp-black: #0d0d0f;
  --pp-gold-1: #8b6b21;
  --pp-gold-2: #d4af37;
  --pp-gold-3: #e8c547;
  --pp-light: #fafafa;
  --pp-gray: #6b7280;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--pp-black);
  background: #fff;
}

h1,
h2,
h3,
h4,
.brand-fallback {
  font-family: "Cinzel", serif;
  letter-spacing: 0.02em;
}

.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.brand-logo {
  max-height: 52px;
  width: auto;
}

.brand-fallback {
  font-size: 0.9rem;
  font-weight: 700;
}

.language-switcher {
  border: 1px solid #ddd;
  border-radius: 999px;
  overflow: hidden;
}

.lang-btn {
  background: transparent;
  border: 0;
  padding: 0.35rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.lang-btn.active {
  color: #fff;
  background: linear-gradient(110deg, var(--pp-gold-1), var(--pp-gold-2), var(--pp-gold-3));
}

.hero-section {
  background:
    radial-gradient(circle at 88% 18%, rgba(212, 175, 55, 0.18), transparent 33%),
    linear-gradient(to bottom, #fff, var(--pp-light));
}

.eyebrow {
  color: var(--pp-gold-1);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.hero-card,
.info-box,
.service-card {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 1.2rem;
  background: #fff;
}

.hero-card {
  box-shadow: 0 12px 35px rgba(20, 20, 20, 0.08);
}

.section-padding {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--pp-light);
}

.section-dark {
  color: #fff;
  background: linear-gradient(130deg, #101216, #1a1f26);
}

.section-dark .section-title p {
  color: #d2d6dc;
}

.section-title p {
  color: var(--pp-gray);
  max-width: 760px;
}

.country-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.country-chips span {
  border: 1px solid #dadada;
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
}

.section-dark .country-chips span {
  border-color: rgba(255, 255, 255, 0.3);
}

.service-card {
  border-left: 4px solid var(--pp-gold-2);
}

.financial-item {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  font-size: 0.95rem;
}

.section-cta {
  background:
    linear-gradient(130deg, rgba(139, 107, 33, 0.11), rgba(232, 197, 71, 0.14)),
    #fff;
}

.cta-text {
  max-width: 760px;
}

.contact-form .form-control {
  border-radius: 10px;
  border-color: #d6d6d6;
  padding: 0.72rem 0.86rem;
}

.contact-feedback {
  font-size: 0.92rem;
  font-weight: 500;
}

.contact-feedback.success {
  color: #0b7a35;
}

.contact-feedback.error {
  color: #b42318;
}

.btn-gold {
  color: #111;
  border: 0;
  font-weight: 700;
  background: linear-gradient(112deg, var(--pp-gold-1), var(--pp-gold-2), var(--pp-gold-3));
}

.btn-gold:hover {
  color: #111;
  transform: translateY(-1px);
}

.site-footer {
  background: #fff;
}

.contact-direct-heading {
  color: var(--pp-gold-1);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.contact-direct-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.contact-link {
  color: var(--pp-black);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
  word-break: break-word;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: var(--pp-gold-1);
}

.contact-link:focus-visible {
  outline: 2px solid var(--pp-gold-2);
  outline-offset: 3px;
  border-radius: 6px;
}

.contact-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  background: var(--pp-black);
  color: #fff;
  font-size: 0.98rem;
}

.founder-photo-wrap {
  position: relative;
  width: 315px;
  max-width: 100%;
}

.founder-row {
  --bs-gutter-x: 50px;
  --bs-gutter-y: 1.35rem;
}

.founder-content {
  padding-left: 0;
}

.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(15, 15, 20, 0.16);
}

@media (max-width: 991px) {
  .brand-logo {
    max-height: 42px;
  }

  .section-padding {
    padding: 3.2rem 0;
  }

  .language-switcher {
    margin-top: 0.8rem;
    width: fit-content;
  }

  .founder-photo-wrap {
    width: 240px;
    max-width: 100%;
    height: auto !important;
    margin: 0 auto;
  }

  .founder-row {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
  }

  .founder-content {
    padding-left: 0;
  }
}

.articles-page .section-title h1 {
  margin-bottom: 0.5rem;
}

.article-card {
  position: relative;
  background: var(--pp-light);
  border: 1px solid rgba(13, 13, 15, 0.08);
  border-radius: 0.5rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.article-card:hover {
  box-shadow: 0 8px 24px rgba(13, 13, 15, 0.08);
  transform: translateY(-2px);
}

.article-card-body {
  padding: 1.25rem;
}

.article-card-body h2 a {
  color: inherit;
  text-decoration: none;
}

.article-card-body h2 a:hover {
  color: var(--pp-gold-1);
}

.article-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.5rem;
  background: rgba(139, 107, 33, 0.12);
  color: var(--pp-gold-1);
  border-radius: 0.25rem;
}

.article-excerpt {
  color: var(--pp-gray);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.article-date {
  font-size: 0.85rem;
  color: var(--pp-gray);
}

.article-back {
  color: var(--pp-gold-1);
  text-decoration: none;
  font-weight: 500;
}

.article-back:hover {
  text-decoration: underline;
}

.article-header {
  max-width: 760px;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(13, 13, 15, 0.1);
}

.article-title {
  font-family: "Cinzel", serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.25;
  margin: 0.75rem 0 1rem;
  letter-spacing: 0.02em;
}

.article-lead {
  font-size: 1.1rem;
  color: var(--pp-gray);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.article-body {
  max-width: 760px;
}

.article-content {
  line-height: 1.75;
  font-size: 1.05rem;
  color: var(--pp-black);
}

.article-content > *:first-child {
  margin-top: 0;
}

.article-content > *:last-child {
  margin-bottom: 0;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
  font-family: "Cinzel", serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.3;
  color: var(--pp-black);
}

.article-content h1 {
  font-size: 1.65rem;
  margin: 2rem 0 1rem;
}

.article-content h2 {
  font-size: 1.45rem;
  margin: 2rem 0 0.85rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(139, 107, 33, 0.2);
}

.article-content h3 {
  font-size: 1.2rem;
  margin: 1.5rem 0 0.65rem;
}

.article-content h4 {
  font-size: 1.05rem;
  margin: 1.25rem 0 0.5rem;
}

.article-content p {
  margin-bottom: 1.15rem;
}

.article-content a {
  color: var(--pp-gold-1);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.article-content a:hover {
  color: #6d5419;
}

.article-content strong {
  font-weight: 700;
}

.article-content ul,
.article-content ol {
  margin-bottom: 1.15rem;
  padding-left: 1.5rem;
}

.article-content li {
  margin-bottom: 0.35rem;
}

.article-content li > ul,
.article-content li > ol {
  margin-top: 0.35rem;
  margin-bottom: 0.35rem;
}

.article-content blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--pp-gold-2);
  background: rgba(212, 175, 55, 0.08);
  border-radius: 0 0.5rem 0.5rem 0;
  color: #374151;
}

.article-content blockquote p:last-child {
  margin-bottom: 0;
}

.article-content hr {
  margin: 2rem 0;
  border: 0;
  border-top: 1px solid rgba(13, 13, 15, 0.12);
}

.article-content code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.9em;
  padding: 0.15em 0.4em;
  border-radius: 0.25rem;
  background: rgba(13, 13, 15, 0.06);
}

.article-content pre {
  margin: 1.5rem 0;
  padding: 1rem 1.15rem;
  border-radius: 0.5rem;
  background: #1a1f26;
  color: #f3f4f6;
  overflow-x: auto;
  font-size: 0.9rem;
  line-height: 1.5;
}

.article-content pre code {
  padding: 0;
  background: transparent;
  color: inherit;
  font-size: inherit;
}

.article-content table {
  width: 100%;
  margin: 1.5rem 0;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.article-content th,
.article-content td {
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(13, 13, 15, 0.12);
  text-align: left;
}

.article-content th {
  background: var(--pp-light);
  font-weight: 700;
}

.article-content img {
  max-width: 100%;
  height: auto;
  margin: 1.5rem 0;
  border-radius: 0.5rem;
}

.article-content .table-responsive {
  overflow-x: auto;
  margin: 1.5rem 0;
}

.article-pdf-embed iframe {
  width: 100%;
  min-height: 70vh;
  border: 1px solid rgba(13, 13, 15, 0.1);
}