/* ═══════════════════════════════════════════════════════════════════════════
   SHARED — Privacy, Terms, Contact
   ═══════════════════════════════════════════════════════════════════════════ */


/* ─── Hero ───────────────────────────────────────────────────────────────── */
.pg-hero {
  padding: 130px 20px 70px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pg-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #aaa;
  margin-bottom: 28px;
}

.pg-eyebrow::before,
.pg-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: #D4C5A9;
  flex-shrink: 0;
}

.pg-title {
  font-family: "Libre Baskerville", serif;
  font-size: 48px;
  font-weight: 400;
  color: #0d0d0d;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.pg-updated {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #bbb;
}


/* ─── Legal content ──────────────────────────────────────────────────────── */
.pg-content {
  max-width: 740px;
  margin: 0 auto;
  padding: 20px 20px 100px;
  font-family: "Inter", sans-serif;
}

.pg-divider {
  width: 60px;
  height: 1px;
  background: #E8E5E1;
  margin: 0 auto 60px;
}

.pg-content h2 {
  font-family: "Libre Baskerville", serif;
  font-size: 22px;
  font-weight: 400;
  color: #111;
  margin: 50px 0 14px;
}

.pg-content h2:first-child { margin-top: 0; }

.pg-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin: 0 0 16px;
}

.pg-content ul {
  padding-left: 20px;
  margin: 0 0 16px;
}

.pg-content ul li {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 8px;
}

.pg-content a {
  color: #333;
  border-bottom: 1px solid #ccc;
  text-decoration: none;
  transition: border-color 0.3s ease;
}

.pg-content a:hover { border-color: #333; }

.pg-section-rule {
  display: block;
  height: 1px;
  background: #EDEBE6;
  margin: 40px 0;
  border: none;
}


/* ─── Contact page ───────────────────────────────────────────────────────── */
.pg-contact-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px 100px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  align-items: start;
}

.pg-contact-intro {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 40px;
}

/* Form */
.pg-form-group { margin-bottom: 28px; }

.pg-label {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #999;
  margin-bottom: 10px;
}

.pg-input,
.pg-select,
.pg-textarea {
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #111;
  background: transparent;
  border: none;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.pg-input:focus,
.pg-select:focus,
.pg-textarea:focus { border-bottom-color: #111; }

.pg-input::placeholder,
.pg-textarea::placeholder { color: #bbb; }

.pg-textarea {
  resize: none;
  height: 120px;
  display: block;
}

.pg-submit {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #3F3F3C;
  background-color: #EFE4D2;
  border: none;
  border-radius: 50px;
  padding: 16px 40px;
  cursor: pointer;
  transition: all 0.35s ease;
  margin-top: 10px;
}

.pg-submit:hover { background-color: #E2D2BC; transform: translateY(-2px); }

.pg-form-notice {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #888;
  margin-top: 16px;
  line-height: 1.5;
}

.pg-form-success {
  font-family: "Libre Baskerville", serif;
  font-style: italic;
  font-size: 20px;
  color: #555;
  padding: 40px 0;
  line-height: 1.6;
}

.pg-form-error {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #c0392b;
  margin-bottom: 20px;
}

/* Contact sidebar */
.pg-contact-sidebar {
  padding-top: 8px;
}

.pg-sidebar-block {
  margin-bottom: 40px;
}

.pg-sidebar-label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #bbb;
  display: block;
  margin-bottom: 10px;
}

.pg-sidebar-value {
  font-family: "Libre Baskerville", serif;
  font-size: 17px;
  color: #333;
  line-height: 1.5;
}

.pg-sidebar-value a {
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #ddd;
  transition: border-color 0.3s ease;
}

.pg-sidebar-value a:hover { border-color: #333; }

.pg-sidebar-rule {
  height: 1px;
  background: #EDEBE6;
  border: none;
  margin: 40px 0;
}

.pg-response-note {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #aaa;
  line-height: 1.6;
  font-style: italic;
}


/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .pg-hero  { padding: 100px 20px 50px; }
  .pg-title { font-size: 32px; }

  .pg-content { padding: 20px 20px 70px; }
  .pg-content h2 { font-size: 19px; }
  .pg-content p, .pg-content ul li { font-size: 15px; }

  .pg-contact-wrap { grid-template-columns: 1fr; gap: 50px; padding: 0 20px 70px; }
  .pg-contact-sidebar { border-top: 1px solid #EDEBE6; padding-top: 40px; }
}
