/* ===== LEGAL PAGES ===== */

.header.scrolled { box-shadow: 0 2px 20px rgba(28,31,58,0.12); }
.header .container { display: flex; align-items: center; justify-content: space-between; }

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 8px 18px;
  border-radius: 6px;
  transition: background 0.3s, color 0.3s;
  text-decoration: none;
}
.back-btn:hover { background: var(--accent); color: var(--white); }

.legal-page { padding-top: 80px; min-height: 100vh; background: var(--cream); }

.legal-hero {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.legal-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(201,168,76,0.1) 0%, transparent 60%);
}
.legal-icon {
  width: 70px; height: 70px;
  background: rgba(201,168,76,0.15);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  position: relative;
}
.legal-icon i { font-size: 28px; color: var(--gold); }
.legal-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 5vw, 42px);
  color: var(--white);
  margin-bottom: 10px;
  position: relative;
}
.legal-hero p { font-size: 14px; color: rgba(255,255,255,0.6); position: relative; }

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 20px 80px;
}

.legal-section {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 20px;
  border: 1px solid var(--gray-border);
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow);
}
.legal-section h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.legal-section h2 i { color: var(--gold); font-size: 16px; }
.legal-section p {
  font-size: 15px;
  color: var(--gray-dark);
  line-height: 1.85;
  margin-bottom: 10px;
}
.legal-section ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.legal-section ul li {
  font-size: 15px;
  color: var(--gray-dark);
  padding-left: 20px;
  position: relative;
  line-height: 1.7;
}
.legal-section ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 12px;
  top: 3px;
}
.legal-section ul li strong { color: var(--accent); }

.legal-contact {
  background: var(--gray-light);
  border-radius: 8px;
  padding: 16px 20px;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.legal-contact p {
  font-size: 14px;
  color: var(--gray-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.legal-contact i { color: var(--gold); width: 16px; }
.legal-contact a { color: var(--accent); font-weight: 500; }
.legal-contact a:hover { color: var(--gold-dark); }

/* Footer on legal pages */
.legal-page ~ .footer .footer-bottom {
  padding: 20px;
  text-align: center;
}
.legal-page ~ .footer .footer-bottom a {
  color: rgba(255,255,255,0.6);
  margin: 0 8px;
  font-size: 13px;
  transition: color 0.3s;
}
.legal-page ~ .footer .footer-bottom a:hover { color: var(--gold); }

/* Mobile */
@media (max-width: 600px) {
  .legal-section { padding: 20px 18px; }
  .legal-section h2 { font-size: 16px; }
  .legal-hero { padding: 40px 16px; }
  .back-btn { font-size: 13px; padding: 7px 14px; }
}
