@font-face {
  font-family: "Outfit";
  src: url("/site/templates/fonts/Outfit-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("/site/templates/fonts/Outfit-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("/site/templates/fonts/Outfit-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("/site/templates/fonts/Outfit-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  background: #120201;
  color: #fff;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 1.4px;
}

/* ── HERO ── */
.hero { position: relative; width: 100%; min-height: 70vh; display: flex; align-items: center; justify-content: flex-start; overflow: hidden; background: #120201; }
.hero-bg { position: absolute; inset: 0; background-color: #e11e16; }
.hero-bg-img { position: absolute; inset: 0; background-size: cover; background-position: center 20%; mix-blend-mode: darken; opacity: 0.85; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, #120201 0%, rgba(18,2,1,0.95) 10%, rgba(18,2,1,0.5) 40%, rgba(18,2,1,0) 100%); }
.hero-content { position: relative; z-index: 10; width: 100%; padding: 4rem 5% 0.5rem; display: flex; flex-direction: column; align-items: flex-start; gap: 0; }

.hero-title-fallback {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 600;
  min-height: 100px;
  width: 70%;
  line-height: 50px;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  margin-top: -6.7rem;
}

.hero-meta-pills {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-top: -1rem;
}

.pill {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.60rem 0.7rem;
  border-radius: 5px;
  color: rgba(0, 0, 0, 0.9);
  background: #ffb7b5;
  text-decoration: none;
}

.pill-outline {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.05);
  color: rgb(255, 255, 255);
  font-size: 0.75rem;
  border: none;
  border-left: 2px solid #ffb7b5;
  padding: 0.60rem 0.7rem;
}

/* ── CONTENT WRAPPER ── */
.legal-content-wrapper {
  padding: 1rem 5% 3rem;
  margin-top: -11rem;
  position: relative;
  z-index: 3;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  min-height: 30vh;
}

.legal-content {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  line-height: 15px;
}

.legal-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffb7b5;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-content h4:first-child {
  margin-top: 0;
}

.legal-content p {
  margin-bottom: 1rem;
}

.legal-content ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: #ffb7b5;
  text-decoration: none;
}

.legal-content a:hover {
  color: #e11e16;
}

.legal-content hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 2rem 0;
}

.legal-content strong {
  color: #fff;
}