/* ===============================
   RESET & BASE
   =============================== */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f6f5f2;
  color: #1f1f1f;
  font-family: Georgia, "Times New Roman", serif;
  overflow-x: hidden;
}

/* ===============================
   HEADER
   =============================== */

.pp-header {
  background: #ffffff;
  border-bottom: 1px solid #e0ded9;
  position: relative;
}

.pp-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.75rem 2rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
}

/* ===============================
   BRAND
   =============================== */

.pp-brand {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.pp-logo {
  font-size: 1.7rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: #5a0f0f;
}

.pp-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
}

/* ===============================
   HEADER CENTER IMAGE
   =============================== */

.pp-header-image {
  position: absolute;
  left: 43%;
  transform: translateX(-50%);
  bottom: -1px;
  z-index: 10;
}

.pp-header-image img {
  height: 120px;
  width: auto;
  display: block;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.3));
}

/* ===============================
   NAV
   =============================== */

.pp-nav {
  display: flex;
  gap: 2.2rem;
}

.pp-nav a {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: #444;
  position: relative;
  padding-bottom: 0.35rem;
}

.pp-nav a:hover {
  color: #5a0f0f;
}

.pp-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #5a0f0f;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.pp-nav a:hover::after {
  transform: scaleX(1);
}

/* ===============================
   MAIN
   =============================== */

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===============================
   HERO (FULL BLEED)
   =============================== */

.pp-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  min-height: 80vh;
  background-image: url("http://www.lordpenh.com/img/phnompenh.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.pp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.28);
}

.pp-hero-overlay {
  position: relative;
  width: 100%;
}

.pp-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 3.5rem;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(10px);
  border-radius: 22px;
}

/* Hero text */

.pp-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
  margin: 0 0 1.4rem;
}

.pp-hero-title {
  font-size: 2.9rem;
  font-weight: normal;
  line-height: 1.15;
  margin: 0 0 1.6rem;
}

.pp-hero-intro {
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0 0 2.6rem;
  color: rgba(0,0,0,0.85);
}

/* Hero actions */

.pp-hero-actions {
  display: flex;
  gap: 2.5rem;
}

.pp-hero-link {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: #5a0f0f;
  position: relative;
}

.pp-hero-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: #5a0f0f;
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.pp-hero-link:hover::after {
  transform: scaleX(1);
}

.pp-hero-link.secondary {
  color: rgba(0,0,0,0.6);
}

/* ===============================
   GLOBAL TYPOGRAPHY
   =============================== */

p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 1.25rem 0;
  max-width: 40rem;
  color: #1f1f1f;
}

.small {
  font-size: 0.9rem;
  color: rgba(0,0,0,0.65);
}

/* Section headings */

h1 {
  font-size: 2rem;
  font-weight: normal;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin: 0 0 1.6rem 0;
  max-width: 42rem;
  color: #1f1f1f;
}

/* Slightly tighter on small screens */
@media (max-width: 600px) {
  h1 {
    font-size: 2.1rem;
    line-height: 1.25;
  }
}

h2 {
  font-size: 1.55rem;
  font-weight: normal;
  margin: 0 0 1.4rem;
}

h3 {
  font-size: 1.05rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #5a0f0f;
  margin: 0 0 1.2rem;
}

/* Lists */
ul {
  padding-left: 1.2rem;
  margin: 0 0 1.6rem 0;
  max-width: 40rem;
}

li {
  margin-bottom: 0.7rem;
}

/* Rules */
hr {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.12);
  margin: 4rem 0;
  max-width: 42rem;
}

/* Links inside content */
main a {
  color: #5a0f0f;
  text-decoration: none;
  border-bottom: 1px solid rgba(90,15,15,0.35);
}

main a:hover {
  border-bottom-color: #5a0f0f;
}

/* ===============================
   VISUAL BLOCKS
   =============================== */

.pp-visual-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
  margin: 6rem 0;
  max-width: 1100px;
}

.pp-visual-block.reverse .pp-visual-image {
  order: 2;
}

.pp-visual-image img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

.pp-visual-text {
  max-width: 32rem;
}

/* ===============================
   FOOTER
   =============================== */

.pp-footer {
  background: #ffffff;
  border-top: 1px solid #e0ded9;
  margin-top: 6rem;
}

.pp-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.8rem 2rem;
  display: flex;
  justify-content: space-between;
}

.pp-footer-nav {
  display: flex;
  gap: 2rem;
}

.pp-footer-nav a {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(0,0,0,0.65);
}

/* Footer meta */

.pp-footer-meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-family: Arial, Helvetica, sans-serif;
  color: rgba(0,0,0,0.65);
}

.pp-footer-copyright {
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.pp-footer-publisher {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: rgba(0,0,0,0.55);
}

.pp-footer-publisher a {
  color: #5a0f0f;
  text-decoration: none;
}

.pp-footer-publisher a:hover {
  text-decoration: underline;
}

/* ===============================
   SECOND HERO (BURGUNDY)
   =============================== */

.pp-hero-alt {
  background: linear-gradient(
    135deg,
    #5a0f0f 0%,
    #7a1a1a 100%
  );
  min-height: auto;
  padding: 6rem 0;
background-image: url("images/hero-background.jpg");
}

.pp-hero-alt::before {
  display: none;
}

.pp-hero-alt .pp-hero-inner {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
}

.pp-hero-alt .pp-eyebrow {
  color: rgba(0,0,0,0.6);
}

.pp-hero-alt .pp-hero-title {
  font-size: 1.2rem;
}

.pp-hero-alt .pp-hero-intro {
  font-size: 1rem;
}

/* ==================================================
   MOBILE RESPONSIVENESS (ADD ONLY — NO CONTENT CHANGES)
   ================================================== */

@media (max-width: 900px) {

  /* Header stacks instead of squeezing */
  .pp-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    padding-bottom: 3rem;
  }

  .pp-nav {
    flex-wrap: wrap;
    gap: 1.2rem;
  }

  /* Hide header image on mobile */
  .pp-header-image {
    display: none;
  }

  /* Hero: reduce height pressure, keep image */
  .pp-hero {
    min-height: auto;
    padding: 4rem 0;
  }

  .pp-hero-inner {
    padding: 2rem 2.5rem;
    margin: 0 1.5rem;
  }

  .pp-hero-title {
    font-size: 2.2rem;
  }

  .pp-hero-intro {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .pp-hero-actions {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  /* Passport visual blocks stack vertically */
  .pp-visual-block {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin: 4rem auto;
  }

  .pp-visual-block.reverse .pp-visual-image {
    order: 0;
  }

  .pp-visual-text {
    max-width: none;
  }

  /* Footer stacks cleanly */
  .pp-footer-inner {
    flex-direction: column;
    gap: 2rem;
  }

  .pp-footer-nav {
    gap: 1.2rem;
  }
}

@media (max-width: 480px) {

  /* Further scale-down for small phones */
  .pp-logo {
    font-size: 1.4rem;
  }

  .pp-tagline {
    font-size: 0.7rem;
  }

  .pp-hero-title {
    font-size: 1.9rem;
  }

  .pp-hero-inner {
    padding: 1.75rem;
  }

  .pp-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .pp-hero-link {
    font-size: 0.8rem;
  }

  h2 {
    font-size: 1.35rem;
  }

  p {
    font-size: 1rem;
  }
}

/* ===============================
   TRUST SIGNALS
   =============================== */

.pp-trust-signals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 900px;
  margin: 5rem auto;
  padding: 3rem 2rem;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e0ded9;
}

.pp-trust-item {
  text-align: center;
  padding: 1rem;
}

.pp-trust-number {
  font-size: 3.5rem;
  font-weight: normal;
  color: #5a0f0f;
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.pp-trust-label {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.65);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .pp-trust-signals {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem auto;
    padding: 2rem 1.5rem;
  }
  
  .pp-trust-number {
    font-size: 2.8rem;
  }
}

/* ===============================
   FAQ SECTION
   =============================== */

.pp-faq-section {
  max-width: 900px;
  margin: 6rem auto;
  padding: 0 2rem;
}

.pp-faq-title {
  font-size: 2rem;
  font-weight: normal;
  margin-bottom: 3rem;
  color: #1f1f1f;
}

/* FAQ container */
.pp-faq-container {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* Individual FAQ item */
.pp-faq-item {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(90,15,15,0.25);
  background: #fff;
}

/* Question button */
.pp-faq-question {
  width: 100%;
  background: #5a0f0f;
  color: #fff;
  padding: 1.4rem 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border: none;
  text-align: left;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}

/* Hover */
.pp-faq-question:hover {
  background: #6d1515;
}

/* Plus / minus icon */
.pp-faq-icon {
  font-size: 1.6rem;
  line-height: 1;
  transition: transform 0.25s ease;
}

/* Answer area */
.pp-faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #faf9f7;
  transition: max-height 0.35s ease;
}

/* Answer text */
.pp-faq-answer p {
  padding: 1.5rem 1.6rem 1.7rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #1f1f1f;
  max-width: none;
}

/* Active state */
.pp-faq-item.active .pp-faq-answer {
  max-height: 300px;
}

.pp-faq-item.active .pp-faq-icon {
  transform: rotate(45deg);
}

/* ===============================
   MOBILE FAQ
   =============================== */

@media (max-width: 600px) {

  .pp-faq-title {
    font-size: 1.7rem;
    margin-bottom: 2rem;
  }

  .pp-faq-question {
    font-size: 1.05rem;
    padding: 1.2rem 1.3rem;
  }

  .pp-faq-answer p {
    padding: 1.3rem;
    font-size: 0.95rem;
  }
}

.pp-statement {
  max-width: 900px;
  margin: 5rem auto;
  padding: 0 2rem;
  text-align: center;
}

.pp-statement p {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: normal;
}

.pp-statement-trust p {
  color: #5a0f0f;
  font-weight: bold;
}

.pp-statement-usage p {
  color: #1f1f1f;
}

.pp-statement-venue p {
  color: rgba(0,0,0,0.7);
  font-size: 1.2rem;
}

.pp-statement {
  max-width: 960px;
  margin: 4rem auto;
  text-align: center;
}

.pp-statement-trust {
  font-family: var(--serif-font, Georgia, serif);
  color: #5a0f0f; /* your burgundy */
}

.pp-statement-trust p {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.pp-statement-trust p.small {
  font-size: 1.15rem;
  font-weight: 400;
  opacity: 0.85;
  margin-top: 1rem;
}

/* =========================================
   TERMS PAGE ONLY — VISUAL POLISH
   Scoped to hero-alt followed by text blocks
   ========================================= */

/* Give breathing room after the hero */
.pp-hero-alt + .pp-text-block {
  margin-top: 5rem;
}

/* Constrain text width and center the column */
.pp-hero-alt ~ .pp-text-block {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Center section headers for structure */
.pp-hero-alt ~ .pp-text-block h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

/* Subtle divider under section headers */
.pp-hero-alt ~ .pp-text-block h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  background: rgba(0,0,0,0.18);
  margin: 1.2rem auto 0;
}

/* Make the "In short" section feel like a summary */
.pp-hero-alt ~ .pp-text-block:first-of-type {
  background: rgba(0,0,0,0.035);
  padding: 3rem 2.5rem;
  border-radius: 14px;
}

/* Improve rhythm of numbered legal clauses */
.pp-hero-alt ~ .pp-text-block .pp-lead {
  text-align: center;
  font-weight: 600;
  margin-top: 3.8rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
}

/* Tighten paragraph immediately after clause title */
.pp-hero-alt ~ .pp-text-block .pp-lead + p {
  margin-top: 0;
}

/* Narrow legal text slightly for readability */
.pp-hero-alt ~ .pp-text-block:nth-of-type(n+3) {
  max-width: 680px;
}

/* Center and elevate the closing question */
.pp-hero-alt ~ .pp-statement {
  margin-top: 6rem;
  margin-bottom: 6rem;
  text-align: center;
}

/* FAQ accordion – mobile-safe fix */

.pp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.pp-faq-item.active .pp-faq-answer {
  max-height: 2000px; /* intentionally large */
}

.pp-faq-answer p {
  padding: 1.25rem 1.5rem 1.5rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .pp-faq-question {
    font-size: 1.05rem;
    padding: 1.1rem 1.25rem;
  }

  .pp-faq-answer p {
    font-size: 0.95rem;
    padding: 1rem 1.25rem 1.25rem;
  }
}

/* Statement sections – improve mobile width */

.pp-statement {
  max-width: 960px;
  margin: 4rem auto;
  padding: 0 2rem;
  text-align: center;
}

@media (max-width: 600px) {
  .pp-statement {
    max-width: none;        /* let it breathe */
    padding: 0 1.5rem;      /* still keep margins */
  }

  .pp-statement-trust p {
    font-size: 1.35rem;     /* slightly smaller than desktop */
    line-height: 1.35;
  }

  .pp-statement-trust p.small {
    font-size: 1.05rem;
    line-height: 1.5;
  }
}

/* ===== TERMS PAGE TYPOGRAPHY FIX ONLY ===== */

.pp-text-block {
  text-align: center;
padding-top: 2rem;
}

.pp-text-block p {
  margin-left: auto;
  margin-right: auto;
}

.pp-text-block h2 {
  text-align: center;
}

/* Wider statement blocks on mobile */
@media (max-width: 600px) {
  .pp-statement {
    max-width: 92%;
  }
}

