/* ===== PAGE BANNER (legal) ===== */
.page-banner {
  position: relative;
  height: 40vh;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--dark);
  overflow: hidden;
}

.page-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1920&q=80');
  background-size: cover;
  background-position: center;
}

.page-banner-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(41,59,19,0.92) 0%, rgba(41,59,19,0.6) 100%);
}

.page-banner-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.page-banner-content .section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  border: 1px solid rgba(188,6,13,0.3);
  padding: 8px 20px;
  border-radius: 2px;
}

.page-banner-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--white);
  line-height: 1.15;
}

.page-banner-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin-top: 12px;
  font-weight: 300;
}

/* ===== LEGAL CONTENT ===== */
.legal-section {
  padding: 80px 0;
}

.legal-content {
  background: var(--white);
  border-radius: 4px;
  padding: 48px;
  box-shadow: var(--shadow);
}

.legal-content .last-update {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.legal-content h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--dark);
  margin: 40px 0 12px;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 24px 0 8px;
  letter-spacing: 0.5px;
}

.legal-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 16px;
}

.legal-content ul {
  list-style: none;
  margin: 12px 0 20px 24px;
}

.legal-content ul li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.legal-content .highlight-box {
  background: var(--off-white);
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  margin: 24px 0;
  border-radius: 0 4px 4px 0;
}

.legal-content .highlight-box p {
  margin-bottom: 0;
  font-size: 14px;
}

.legal-content strong {
  color: var(--dark);
}

.legal-content a.inline-link {
  color: var(--gold);
  font-weight: 500;
}

.legal-actions {
  text-align: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* ===== SMALL OUTLINE BUTTON ===== */
.btn-outline-sm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1.5px solid var(--gold);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
  color: var(--gold);
}

.btn-outline-sm:hover {
  background: var(--gold);
  color: var(--white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .page-banner {
    height: 35vh;
    min-height: 320px;
    padding: 130px 0 40px;
  }

  .legal-content {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .legal-content {
    padding: 24px 16px;
  }
}
