.page-privacy {
  --pv-gold-soft: rgba(212, 175, 55, 0.14);
  --pv-navy-text: #1F3A93;
  --pv-muted: #555555;
  scroll-margin-top: 100px;
}

.page-privacy .breadcrumb {
  margin-top: 28px;
  padding: 14px 0 0;
}

.page-privacy .breadcrumb a {
  text-decoration: none;
  color: var(--c-navy);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-time) ease;
}

.page-privacy .breadcrumb a:hover {
  border-color: var(--c-gold);
}

.page-privacy .breadcrumb span {
  color: var(--c-gray);
}

.page-privacy .breadcrumb span[aria-current="page"] {
  color: var(--c-dark);
  font-weight: 600;
}

.pv-hero {
  padding: calc(var(--header-top) + 56px) 0 32px;
  position: relative;
  background-image:
    linear-gradient(rgba(31, 58, 147, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 58, 147, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
}

.pv-hero__copy {
  position: relative;
  z-index: 1;
}

.pv-kicker {
  font-family: var(--font-heading);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--c-gold);
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pv-kicker::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--c-gold);
  display: inline-block;
}

.pv-hero__copy h1 {
  font-family: var(--font-heading);
  font-size: clamp(48px, 9vw, 88px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--c-white);
  background: var(--c-black);
  display: inline-block;
  margin: 12px 0 28px;
  padding: 14px 22px 16px;
  box-shadow: 10px 10px 0 var(--c-gold);
}

.pv-hero__lead {
  font-size: 16px;
  line-height: 1.9;
  color: var(--c-dark);
  max-width: 40em;
  margin-bottom: 20px;
}

.pv-hero__meta {
  display: inline-block;
  background: var(--pv-gold-soft);
  border: 1px solid var(--c-gold);
  color: var(--pv-navy-text);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  letter-spacing: 0.04em;
}

.pv-hero__visual {
  margin-top: 40px;
  border: var(--border-w) solid var(--c-black);
  box-shadow: var(--shadow);
}

.pv-hero__visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.pv-layout {
  display: block;
  padding-top: 56px;
}

.pv-sidebar {
  margin-bottom: 48px;
}

.pv-sidebar__card {
  border: var(--border-w) solid var(--c-black);
  box-shadow: var(--shadow-sm);
  background: var(--c-white);
  padding: 26px 26px 18px;
}

.pv-sidebar__title {
  font-family: var(--font-heading);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--c-gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pv-sidebar__title::after {
  content: "◆";
  color: var(--c-red);
  font-size: 12px;
}

.pv-toc {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pv-toc li {
  border-bottom: 1px dashed #e2e2e2;
}

.pv-toc li:last-child {
  border-bottom: none;
}

.pv-toc a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 4px;
  color: var(--c-dark);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: color var(--transition-time) ease, padding-left var(--transition-time) ease;
}

.pv-toc a span {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--c-gold);
  background: var(--c-black);
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.pv-toc a:hover {
  color: var(--c-red);
  padding-left: 8px;
}

.pv-sidebar__note {
  margin-top: 20px;
  background: var(--c-navy);
  color: #ffffff;
  border: var(--border-w) solid var(--c-black);
  box-shadow: var(--shadow-sm);
  padding: 22px;
}

.pv-sidebar__note h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 10px;
  color: #ffffff;
}

.pv-sidebar__note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  line-height: 1.8;
}

.pv-sidebar__note a {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 2px solid var(--c-gold);
  font-weight: 700;
}

.pv-backtop {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 8px 16px;
  background: var(--c-lightgray);
  border: 2px solid var(--c-black);
  color: var(--c-dark);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--transition-time) ease, color var(--transition-time) ease, box-shadow var(--transition-time) ease;
}

.pv-backtop:hover {
  background: var(--c-black);
  color: var(--c-white);
  box-shadow: 3px 3px 0 var(--c-gold);
}

.pv-content {
  padding-bottom: 24px;
}

.pv-section {
  padding: 32px 0 44px;
  border-bottom: 1px solid #eaeaea;
  scroll-margin-top: 100px;
}

.pv-section:first-of-type {
  padding-top: 0;
}

.pv-section:last-of-type {
  border-bottom: none;
}

.pv-section__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.pv-section__num {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--c-gold);
  background: var(--c-black);
  padding: 7px 11px 8px;
  line-height: 1;
  flex: none;
}

.pv-section__head h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 32px);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
  color: var(--c-dark);
}

.pv-section__head::after {
  content: "";
  flex: 1 1 auto;
  height: 2px;
  background: linear-gradient(90deg, var(--c-gold) 0%, rgba(212, 175, 55, 0) 100%);
  margin-left: 10px;
  min-width: 20px;
}

.pv-section .prose p {
  font-size: 15px;
  line-height: 1.9;
  color: #333333;
  margin: 0 0 16px;
}

.pv-section .prose ul {
  list-style: none;
  margin: 0 0 18px;
  padding: 0 0 0 22px;
  border-left: 3px solid var(--c-gold);
}

.pv-section .prose li {
  position: relative;
  padding: 6px 0 6px 18px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--c-dark);
}

.pv-section .prose li::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 19px;
  width: 9px;
  height: 9px;
  background: var(--c-gold);
  transform: rotate(45deg);
}

.pv-section .prose li strong {
  color: var(--pv-navy-text);
  font-weight: 700;
}

.pv-section .prose a {
  color: var(--c-navy);
  text-decoration: none;
  border-bottom: 2px solid var(--c-gold);
  font-weight: 600;
  transition: color var(--transition-time) ease, border-color var(--transition-time) ease;
}

.pv-section .prose a:hover {
  color: var(--c-red);
  border-color: var(--c-red);
}

.pv-icp {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 18px;
  border: 1px solid #d9d9d9;
  background: var(--c-lightgray);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--pv-muted);
}

.pv-seal {
  width: 36px;
  height: 36px;
  margin: 44px auto 0;
  background: var(--c-gold);
  transform: rotate(45deg);
  box-shadow: 5px 5px 0 var(--c-black);
}

@media (min-width: 992px) {
  .pv-hero {
    padding-top: calc(var(--header-top) + 80px);
    padding-bottom: 60px;
  }

  .pv-hero::after {
    display: block;
    position: absolute;
    top: 90px;
    right: 3%;
    width: 22px;
    height: 22px;
    background: var(--c-red);
    transform: rotate(45deg);
    z-index: 0;
    opacity: 0.9;
  }

  .pv-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
    gap: 64px;
    align-items: center;
  }

  .pv-hero__copy h1 {
    font-size: clamp(70px, 7vw, 104px);
  }

  .pv-hero__lead {
    font-size: 18px;
  }

  .pv-hero__visual {
    margin-top: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    align-self: stretch;
  }

  .pv-hero__visual img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .pv-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 72px;
    align-items: start;
    padding-top: 72px;
  }

  .pv-sidebar {
    position: sticky;
    top: calc(var(--header-top) + 80px);
    margin-bottom: 0;
  }

  .pv-content {
    padding-bottom: 40px;
  }

  .pv-section {
    padding: 44px 0 56px;
  }
}
