/* ══════════════════════════════════
   LEGAL PAGES (Privacy Policy, Terms)
   ══════════════════════════════════ */

.osb-legal-hero {
  position: relative; background: var(--osb-charcoal); padding: 100px 0 80px; overflow: hidden;
}
.osb-legal-hero__grid {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0.03;
  background-image: linear-gradient(90deg, var(--osb-silver) 1px, transparent 1px), linear-gradient(180deg, var(--osb-silver) 1px, transparent 1px);
  background-size: 100px 100px; pointer-events: none;
}
.osb-legal-hero__container { position: relative; z-index: 2; max-width: var(--osb-container-max); margin: 0 auto; padding: 0 48px; }
.osb-legal-hero__title { font-family: var(--osb-font-heading); font-size: clamp(36px, 4.5vw, 58px); font-weight: 700; color: var(--osb-off-white); letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 16px; }
.osb-legal-hero__breadcrumb { font-family: var(--osb-font-body); font-size: 14px; color: var(--osb-concrete-light); }
.osb-legal-hero__breadcrumb a { color: var(--osb-concrete-light); text-decoration: none; transition: color 0.2s ease; }
.osb-legal-hero__breadcrumb a:hover { color: var(--osb-brass); }
.osb-legal-hero__breadcrumb span { color: var(--osb-brass); margin: 0 8px; }
.osb-legal-hero__accent { position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, var(--osb-brass) 0%, rgba(179,155,106,0.2) 50%, transparent 100%); }

.osb-legal-content {
  background: var(--osb-off-white); padding: 80px 0 100px;
}
.osb-legal-content__container {
  max-width: 820px; margin: 0 auto; padding: 0 48px;
}
.osb-legal-content h2 {
  font-family: var(--osb-font-heading); font-size: 22px; font-weight: 600;
  color: var(--osb-charcoal); margin: 48px 0 16px; letter-spacing: -0.01em; line-height: 1.3;
}
.osb-legal-content h2:first-child { margin-top: 0; }
.osb-legal-content p {
  font-family: var(--osb-font-body); font-size: 15px; line-height: 1.8;
  color: var(--osb-concrete); margin-bottom: 16px;
}
.osb-legal-content a { color: var(--osb-brass); text-decoration: none; transition: color 0.2s ease; }
.osb-legal-content a:hover { color: var(--osb-charcoal); }
.osb-legal-content ul {
  font-family: var(--osb-font-body); font-size: 15px; line-height: 1.8;
  color: var(--osb-concrete); margin: 0 0 16px 24px;
}
.osb-legal-content ul li { margin-bottom: 6px; }
.osb-legal-updated {
  font-family: var(--osb-font-body); font-size: 13px; color: var(--osb-concrete-light);
  margin-bottom: 40px; padding-bottom: 32px; border-bottom: 1px solid rgba(17,17,17,0.08);
}

@media (max-width: 768px) {
  .osb-legal-hero { padding: 64px 0 48px; }
  .osb-legal-hero__container, .osb-legal-content__container { padding: 0 20px; }
  .osb-legal-content { padding: 56px 0 64px; }
}

/* ══════════════════════════════════
   404 PAGE
   ══════════════════════════════════ */

.osb-404 {
  position: relative;
  background: var(--osb-charcoal);
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  overflow: hidden;
}

.osb-404__grid {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0.03;
  background-image:
    linear-gradient(90deg, var(--osb-silver) 1px, transparent 1px),
    linear-gradient(180deg, var(--osb-silver) 1px, transparent 1px);
  background-size: 100px 100px;
  pointer-events: none;
}

.osb-404__content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.osb-404__number {
  font-family: var(--osb-font-heading);
  font-size: clamp(100px, 18vw, 200px);
  font-weight: 700;
  color: rgba(179, 155, 106, 0.1);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: -20px;
  position: relative;
}

.osb-404__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  justify-content: center;
}

.osb-404__label-line {
  width: 32px;
  height: 1px;
  background: var(--osb-brass);
}

.osb-404__label-text {
  font-family: var(--osb-font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--osb-brass);
}

.osb-404__heading {
  font-family: var(--osb-font-heading);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--osb-off-white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.osb-404__sub {
  font-family: var(--osb-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--osb-concrete-light);
  margin-bottom: 36px;
}

.osb-404__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--osb-font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--osb-charcoal);
  background: var(--osb-brass);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.osb-404__btn:hover {
  background: var(--osb-brass-hover);
  transform: translateY(-2px);
}

.osb-404__btn-arrow {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: transform 0.3s ease;
}

.osb-404__btn:hover .osb-404__btn-arrow {
  transform: translateX(3px);
}

.osb-404__links {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.osb-404__link {
  font-family: var(--osb-font-body);
  font-size: 14px;
  color: var(--osb-concrete);
  text-decoration: none;
  transition: color 0.2s ease;
}

.osb-404__link:hover {
  color: var(--osb-brass);
}

@media (max-width: 640px) {
  .osb-404 { min-height: 60vh; padding: 60px 20px; }
  .osb-404__btn { width: 100%; justify-content: center; }
}