.legal-page {
  position: relative;
  background: #f6f2eb;
  color: #1a2431;
}

/* Hero Section */
.legal-page__hero {
  position: relative;
  padding: clamp(140px, 12vw, 180px) 0 clamp(60px, 8vw, 84px);
  background: #07110e;
  color: #f7f4ed;
  overflow: hidden;
  text-align: center;
}

.legal-page__hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 120%;
  height: 140%;
  background: radial-gradient(circle at 50% 100%, rgba(236, 125, 69, 0.08), transparent 70%);
  pointer-events: none;
}

.legal-page__hero-inner {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.legal-page__breadcrumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: rgba(247, 244, 237, 0.6);
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.legal-page__breadcrumb-link {
  color: #ec7d45;
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-page__breadcrumb-link:hover {
  color: #fca07d;
}

.legal-page__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1;
  letter-spacing: -0.04em;
}

/* Content Area */
.legal-page__content-wrap {
  padding: clamp(64px, 10vw, 110px) 0;
}

.legal-page__content-inner {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.legal-page__content {
  max-width: 860px;
  margin: 0 auto;
  font-family: "Open Sans", sans-serif;
  font-size: 17px;
  line-height: 1.85;
  color: rgba(26, 36, 49, 0.88);
}

/* Rich Text Formatting */
.legal-page__content h2 {
  margin: 3.5rem 0 1.5rem;
  color: #1a2431;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.2;
}

.legal-page__content h2:first-child {
  margin-top: 0;
}

.legal-page__content h3 {
  margin: 2.5rem 0 1.25rem;
  color: #1a2431;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
}

.legal-page__content p {
  margin-bottom: 1.5rem;
}

.legal-page__content ul,
.legal-page__content ol {
  margin: 1.5rem 0 2rem;
  padding-left: 1.5rem;
}

.legal-page__content li {
  margin-bottom: 0.75rem;
}

.legal-page__content strong {
  color: #1a2431;
  font-weight: 700;
}

.legal-page__content a {
  color: #ec7d45;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  transition: color 0.2s ease;
}

.legal-page__content a:hover {
  color: #1a2431;
}

.legal-page__content blockquote {
  margin: 3rem 0;
  padding: 2.5rem;
  background: rgba(236, 125, 69, 0.05);
  border-left: 4px solid #ec7d45;
  font-style: italic;
  font-size: 1.1em;
}

.legal-page__last-updated {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(26, 36, 49, 0.1);
  color: rgba(26, 36, 49, 0.5);
  font-size: 14px;
  font-family: var(--font-secondary);
}

@media (max-width: 767px) {
  .legal-page__hero {
    padding: 120px 0 50px;
  }
  
  .legal-page__content {
    font-size: 16px;
  }
}
