: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;
  }
}