:root {
  --bg: #0c0c0c;
  --panel: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.2);
  --text: #f7f5f0;
  --muted: rgba(247, 245, 240, 0.62);
  --muted-strong: rgba(247, 245, 240, 0.84);
  --accent: #ffffff;
  --hero-title-size: clamp(1.02rem, 1.48vw, 1.34rem);
  --sans: "Neue Haas Grotesk Display Pro", "Helvetica Neue", Helvetica, sans-serif;
  --serif: "Canela", "Iowan Old Style", "Times New Roman", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
}

body.policy-page {
  --bg: #f7f5f0;
  --panel: rgba(0, 0, 0, 0.05);
  --line: rgba(0, 0, 0, 0.12);
  --text: #111111;
  --muted: rgba(17, 17, 17, 0.62);
  --muted-strong: rgba(17, 17, 17, 0.84);
  --accent: #111111;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.22;
}

body.policy-page::before {
  display: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page-shell {
  position: relative;
  overflow: clip;
}

.hero-scene {
  position: relative;
  min-height: 100vh;
}

.hero-images,
.scene-wash {
  position: absolute;
  inset: 0;
}

.hero-images {
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: grayscale(8%) contrast(1.04) brightness(0.84) saturate(0.9);
  transform: scale(1.04);
  transition:
    opacity 420ms ease,
    transform 700ms ease;
}

.hero-image.is-active {
  opacity: 0.96;
  transform: scale(1);
}

.scene-wash {
  background:
    linear-gradient(180deg, rgba(6, 6, 6, 0.5) 0%, rgba(10, 10, 10, 0.44) 26%, rgba(10, 10, 10, 0.48) 58%, rgba(8, 8, 8, 0.62) 100%),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0) 38%);
}

.topline,
.hero-grid {
  position: relative;
  z-index: 2;
  width: min(100%, 1460px);
  margin: 0 auto;
}

.topline {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 2rem 0;
}

.contact-button,
.socials {
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand {
  font-size: 0.76rem;
  white-space: nowrap;
  letter-spacing: 0.14em;
  text-transform: none;
}

.studio-italic {
  display: inline-block;
  font-style: italic;
  transform: skewX(-10deg);
  transform-origin: left center;
}

.topline-note,
.hero-marker {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.topline-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.topline-nav a {
  color: inherit;
  transition: color 180ms ease;
}

.topline-nav a:hover,
.topline-nav a:focus-visible {
  color: rgba(247, 245, 240, 1);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  margin-left: auto;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.language-switch button {
  appearance: none;
  min-width: 2.35rem;
  padding: 0.31rem 0.42rem 0.29rem;
  border: 1px solid rgba(247, 245, 240, 0.34);
  border-radius: 0;
  background: rgba(5, 5, 5, 0.06);
  color: rgba(247, 245, 240, 0.62);
  font: inherit;
  font-size: 0.62rem;
  line-height: 1;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.language-switch button:hover,
.language-switch button:focus-visible,
.language-switch button.is-active {
  border-color: rgba(247, 245, 240, 0.9);
  background: rgba(247, 245, 240, 0.92);
  color: #050505;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.8fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  min-height: calc(100vh - 4rem);
  padding: 2rem 2rem 1.8rem;
}

.hero-copy {
  align-self: center;
  padding-bottom: 0;
  max-width: 36rem;
}

.hero-copy h1 {
  margin: 0;
  font-family: var(--sans);
  font-weight: 600;
  font-size: var(--hero-title-size);
  line-height: 1.06;
  letter-spacing: -0.035em;
  text-wrap: normal;
}

.hero-copy h1 > span {
  display: block;
}

.hero-copy h1 .hero-gap {
  height: 0.78em;
}

.hero-line {
  white-space: nowrap;
  display: inline-flex;
  align-items: baseline;
  gap: 0.35em;
}

.hero-line--fixed {
  white-space: nowrap;
}

.hero-description {
  width: min(24rem, 100%);
  margin: 1.35rem 0 0;
  color: var(--muted-strong);
  font-size: 0.92rem;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 1.35rem;
  width: min(24rem, 100%);
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3.3rem;
  padding: 0.95rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 0.72rem;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.4rem;
  margin-top: 1.1rem;
  font-size: 0.72rem;
  width: min(24rem, 100%);
}

.socials a {
  color: var(--muted-strong);
}

.socials-footnote {
  width: min(24rem, 100%);
  margin-top: 0.95rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.socials-footnote p {
  margin: 0;
  color: rgba(247, 245, 240, 0.58);
  font-size: 0.64rem;
  line-height: 1.55;
}

.project-column {
  position: relative;
  align-self: center;
  display: grid;
  align-content: start;
  justify-items: start;
  padding-left: 0;
  padding-top: 0;
  transform: translateX(clamp(-16rem, -26vw, -25rem));
}

.project-rail {
  position: relative;
  width: min(21rem, 100%);
  height: 24rem;
  overflow: visible;
  outline: none;
  cursor: ns-resize;
}

.project-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.project-item {
  --project-shift-y: 0px;
  --project-shift-x: 0px;
  --project-scale: 1;
  --project-opacity: 0;
  appearance: none;
  position: absolute;
  left: 0;
  top: 50%;
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
  font-family: var(--sans);
  font-weight: 600;
  font-size: var(--hero-title-size);
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: rgba(247, 245, 240, 0.24);
  cursor: pointer;
  opacity: var(--project-opacity);
  transform:
    translate3d(var(--project-shift-x), calc(-50% + var(--project-shift-y)), 0)
    scale(var(--project-scale));
  transition:
    color 220ms ease,
    transform 220ms ease,
    opacity 220ms ease;
  will-change: transform, opacity;
}

.project-item.is-active {
  color: rgba(247, 245, 240, 1);
}

.project-item.is-near {
  color: rgba(247, 245, 240, 0.62);
}

.project-item.is-far {
  color: rgba(247, 245, 240, 0.3);
}

.project-detail-panel {
  --project-detail-offset-y: 0px;
  position: absolute;
  right: clamp(-2rem, 2.5vw, 2rem);
  top: 42%;
  z-index: 3;
  width: min(30rem, 38vw);
  display: grid;
  gap: 0.85rem;
  transform: translateY(calc(-50% + var(--project-detail-offset-y)));
}

.project-detail-title {
  margin: 0;
  font-size: clamp(1.1rem, 1.85vw, 1.55rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.project-detail-subtitle {
  margin: -0.2rem 0 0;
  color: rgba(247, 245, 240, 0.84);
  font-size: 0.98rem;
  font-style: italic;
  line-height: 1.3;
}

.project-detail-description {
  margin: 0;
  color: rgba(247, 245, 240, 0.8);
  font-size: 0.92rem;
  line-height: 1.65;
}

.project-detail-button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.9rem;
  padding: 0.8rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font: inherit;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.site-footer {
  position: relative;
  z-index: 2;
  width: min(100%, 1460px);
  margin: 0 auto;
  margin-top: -5.5rem;
  padding: 0 2rem 2rem;
}

.site-footer-top {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr) max-content;
  align-items: center;
  gap: 1rem;
  color: rgba(247, 245, 240, 0.64);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer-top a {
  color: inherit;
}

.site-footer-top :nth-child(2) {
  text-align: center;
  justify-self: center;
  transform: translateX(2.4rem);
}

.site-footer-top :last-child {
  text-align: right;
  justify-self: end;
}

.site-footer-meta {
  margin: 0.95rem 0 0;
  color: rgba(247, 245, 240, 0.5);
  font-size: 0.66rem;
  line-height: 1.55;
  text-align: right;
}

.mobile-action-bar,
.mobile-menu,
.mobile-menu-backdrop,
.mobile-project-inline-detail {
  display: none;
}

.policy-topline .brand,
.policy-topline .topline-nav,
.policy-topline .topline-nav a {
  color: rgba(17, 17, 17, 0.84);
}

.policy-topline .topline-nav a:hover,
.policy-topline .topline-nav a:focus-visible {
  color: rgba(17, 17, 17, 1);
}

.policy-shell {
  width: min(100%, 1460px);
  margin: 0 auto;
  padding: 3.4rem 2rem 4rem;
}

.policy-intro {
  width: min(100%, 62rem);
  margin-bottom: 2.6rem;
}

.policy-kicker {
  margin: 0 0 0.9rem;
  color: rgba(17, 17, 17, 0.48);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.policy-intro h1 {
  margin: 0;
  max-width: 28ch;
  font-size: clamp(1.55rem, 2.8vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.policy-heading-fixed {
  white-space: nowrap;
}

.consent-heading {
  max-width: 46rem;
  font-size: clamp(1.2rem, 1.85vw, 2.05rem);
  line-height: 1.06;
}

.consent-intro {
  width: min(100%, 78rem);
}

.policy-content {
  width: min(100%, 78rem);
  display: grid;
  gap: 2rem;
}

.policy-section {
  display: grid;
  gap: 1rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.policy-section h2 {
  margin: 0;
  font-size: clamp(1.15rem, 1.8vw, 1.6rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.policy-section h3 {
  margin: 0.2rem 0 0;
  font-size: 0.95rem;
  line-height: 1.4;
}

.policy-section p,
.policy-section li,
.policy-section dd {
  margin: 0;
  color: rgba(17, 17, 17, 0.8);
  font-size: 0.97rem;
  line-height: 1.72;
}

.policy-section a {
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.policy-list,
.policy-bullets {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.7rem;
}

.policy-terms {
  margin: 0;
  display: grid;
  gap: 1rem;
}

.policy-terms div {
  display: grid;
  gap: 0.35rem;
}

.policy-terms dt {
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.4;
}

.policy-purpose {
  display: grid;
  gap: 0.55rem;
  padding: 1rem 0 0;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
    padding-top: 4rem;
  }

  .project-column {
    justify-items: start;
    padding-left: 0;
    transform: none;
  }

  .project-rail {
    width: min(100%, 26rem);
    height: 18rem;
  }

  .project-detail-panel {
    position: static;
    right: auto;
    top: auto;
    z-index: auto;
    transform: none;
    width: min(100%, 34rem);
    margin-top: 1rem;
  }

  .hero-image.is-active {
    opacity: 0.22;
  }

  .site-footer-top {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .site-footer {
    margin-top: -2.5rem;
  }

  .site-footer-top span,
  .site-footer-top a,
  .site-footer-top span:nth-child(2),
  .site-footer-top span:last-child,
  .site-footer-meta {
    text-align: left;
  }

  .policy-shell {
    padding-top: 2.4rem;
  }
}

@media (max-width: 720px) {
  html {
    min-height: 100%;
  }

  body:not(.policy-page) {
    height: 100svh;
    min-height: 100svh;
    overflow: hidden;
    overscroll-behavior: none;
  }

  body.policy-page {
    min-height: 100svh;
    overflow-x: hidden;
    background: #f7f5f0;
  }

  body.mobile-menu-open {
    overflow: hidden;
  }

  body:not(.policy-page) .page-shell {
    height: 100svh;
    min-height: 100svh;
    overflow: hidden;
  }

  body.policy-page .page-shell {
    min-height: 100svh;
    overflow: visible;
  }

  .hero-scene {
    height: 100svh;
    min-height: 100svh;
    padding-bottom: 0;
    overflow: hidden;
  }

  .hero-images,
  .scene-wash {
    position: fixed;
  }

  .hero-image {
    filter: grayscale(10%) contrast(1.02) brightness(0.76) saturate(0.9);
  }

  .hero-image.is-active {
    opacity: 0.66;
  }

  .scene-wash {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.58) 0%, rgba(7, 7, 7, 0.42) 24%, rgba(8, 8, 8, 0.54) 58%, rgba(5, 5, 5, 0.78) 100%),
      radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0) 42%);
  }

  .topline {
    align-items: flex-start;
    flex-direction: row;
    position: fixed;
    top: 0;
    z-index: 12;
    width: 100%;
    padding: 1rem 1.05rem 0.85rem;
    background: linear-gradient(180deg, rgba(8, 8, 8, 0.84), rgba(8, 8, 8, 0));
  }

  .topline-nav {
    display: none;
  }

  .topline .language-switch {
    margin-top: 0.02rem;
  }

  .brand {
    font-size: 0.72rem;
  }

  .hero-grid {
    display: block;
    min-height: 0;
    height: 100svh;
    width: 100%;
    padding: 0;
  }

  .hero-copy {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(0.98rem, 3.9vw, 1.14rem);
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .contact-button {
    width: 100%;
  }

  .project-column {
    position: fixed;
    top: 4.7rem;
    right: 0;
    bottom: 7.85rem;
    left: 0;
    z-index: 4;
    width: 100%;
    height: calc(100svh - 12.55rem);
    min-height: 0;
    margin-top: 0;
    padding-left: 1.35rem;
    transform: none;
    align-self: stretch;
    align-content: stretch;
    justify-items: start;
    overflow: hidden;
  }

  .project-rail {
    width: min(calc(100% - 1.35rem), 28rem);
    height: 100%;
    margin-top: 0;
    margin-bottom: 0;
    overflow: visible;
    cursor: ns-resize;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  }

  .project-track {
    position: relative;
    display: block;
    height: 100%;
    padding-bottom: 0;
  }

  .project-item {
    position: absolute;
    left: 0;
    top: 50%;
    width: max-content;
    max-width: none;
    min-height: auto;
    padding: 0;
    border: 0;
    color: rgba(247, 245, 240, 0.66);
    font-size: clamp(0.82rem, 4.8vw, 1.65rem);
    line-height: 1.04;
    letter-spacing: -0.045em;
    white-space: nowrap;
    opacity: var(--project-opacity);
    transform:
      translate3d(var(--project-shift-x), calc(-50% + var(--project-shift-y)), 0)
      scale(var(--project-scale));
    transition:
      color 220ms ease,
      opacity 220ms ease,
      transform 220ms ease;
  }

  .project-item.is-active {
    color: rgba(247, 245, 240, 1);
  }

  .project-item.is-near,
  .project-item.is-far {
    color: rgba(247, 245, 240, 0.66);
  }

  .mobile-project-inline-detail:not([hidden]) {
    position: absolute;
    top: 50%;
    left: 1.25rem;
    z-index: 98;
    display: grid;
    gap: 0.6rem;
    width: min(21.5rem, calc(100vw - 2.5rem));
    transform: translate3d(0, var(--mobile-detail-offset-y), 0);
  }

  .mobile-project-inline-subtitle,
  .mobile-project-inline-description {
    margin: 0;
  }

  .mobile-project-inline-subtitle {
    color: rgba(247, 245, 240, 0.84);
    font-size: 0.74rem;
    font-style: italic;
    line-height: 1.3;
  }

  .mobile-project-inline-description {
    color: rgba(247, 245, 240, 0.72);
    font-size: 0.91rem;
    line-height: 1.44;
  }

  .mobile-project-inline-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 18rem);
    min-height: 2.9rem;
    padding: 0.82rem 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    font-size: 0.74rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }

  .project-detail-panel {
    display: none;
  }

  .project-detail-title {
    font-size: 1.05rem;
  }

  .project-detail-description {
    font-size: 0.9rem;
  }

  .site-footer {
    position: fixed;
    right: 0;
    bottom: max(0.58rem, env(safe-area-inset-bottom));
    left: 0;
    z-index: 30;
    width: 100%;
    margin-top: 0;
    padding: 0 0.8rem;
  }

  .site-footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 0.2rem 0.8rem;
    font-size: 0.46rem;
    line-height: 1.28;
  }

  .site-footer-top span {
    grid-column: 1 / -1;
    white-space: nowrap;
  }

  .site-footer-top a {
    min-width: 0;
    letter-spacing: 0;
  }

  .site-footer-top :nth-child(2) {
    justify-self: start;
    text-align: left;
    transform: none;
  }

  .site-footer-top :last-child {
    justify-self: end;
    text-align: right;
    transform: none;
  }

  .site-footer-top :first-child {
    justify-self: start;
    text-align: left;
  }

  .site-footer-meta {
    margin-top: 0.35rem;
    font-size: 0.46rem;
    line-height: 1.35;
    text-align: left;
  }

  .mobile-action-bar {
    position: fixed;
    right: 0.8rem;
    bottom: calc(max(0.58rem, env(safe-area-inset-bottom)) + 3.42rem);
    left: 0.8rem;
    z-index: 31;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.55rem;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .mobile-contact-button,
  .mobile-menu-button {
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.9rem;
    padding: 0.82rem 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    font: inherit;
    font-size: 0.74rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }

  .mobile-menu-close {
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    min-height: 0;
    border: 0;
    background: transparent;
    color: var(--text);
    font: inherit;
    font-size: 1.75rem;
    line-height: 1;
    letter-spacing: 0;
  }

  .mobile-menu-close {
    padding: 0;
    cursor: pointer;
  }

  .mobile-menu-button {
    cursor: pointer;
  }

  .mobile-menu-backdrop:not([hidden]) {
    position: fixed;
    inset: 0;
    z-index: 35;
    display: block;
    background: rgba(0, 0, 0, 0.42);
  }

  .mobile-menu:not([hidden]) {
    position: fixed;
    right: 0.8rem;
    bottom: calc(max(0.58rem, env(safe-area-inset-bottom)) + 6.85rem);
    left: 0.8rem;
    z-index: 40;
    display: grid;
    gap: 1rem;
    max-height: calc(100svh - 9.2rem);
    overflow: auto;
    padding: 0.72rem 1rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(9, 9, 9, 0.9);
    -webkit-backdrop-filter: blur(22px);
    backdrop-filter: blur(22px);
  }

  .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 2rem;
    color: rgba(247, 245, 240, 0.9);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .mobile-menu-header .language-switch {
    margin-left: auto;
  }

  .mobile-menu-header .language-switch button {
    min-width: 2.18rem;
    padding: 0.28rem 0.35rem 0.26rem;
    font-size: 0.58rem;
  }

  .mobile-menu-links,
  .mobile-menu-socials {
    display: grid;
    gap: 0.75rem;
  }

  .mobile-menu-links a {
    padding-bottom: 0.7rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 1.28rem;
    line-height: 1.05;
    letter-spacing: -0.035em;
  }

  .mobile-menu-socials {
    color: rgba(247, 245, 240, 0.7);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    line-height: 1.45;
    text-transform: uppercase;
  }

  .mobile-menu-footnote {
    margin: 0;
    color: rgba(247, 245, 240, 0.54);
    font-size: 0.64rem;
    line-height: 1.5;
  }

  .policy-shell {
    width: 100%;
    padding: 6.4rem 1.05rem 3.2rem;
  }

  .policy-topline {
    position: fixed;
    inset: 0 0 auto;
    z-index: 20;
    display: grid;
    gap: 1rem;
    padding: 1rem 1.05rem 0.95rem;
    background: rgba(247, 245, 240, 0.88);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  }

  .policy-topline .brand {
    font-size: 0.72rem;
    color: rgba(17, 17, 17, 0.9);
  }

  .policy-topline .topline-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.42rem;
    width: 100%;
  }

  .policy-topline .topline-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.35rem;
    padding: 0.65rem 0.45rem;
    border: 1px solid rgba(17, 17, 17, 0.16);
    color: rgba(17, 17, 17, 0.72);
    font-size: 0.58rem;
    letter-spacing: 0.08em;
    text-align: center;
  }

  .policy-intro {
    margin-bottom: 2rem;
  }

  .policy-kicker {
    margin-bottom: 0.65rem;
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }

  .policy-intro h1 {
    max-width: none;
    font-size: clamp(2.2rem, 15vw, 4.2rem);
    line-height: 0.92;
    letter-spacing: -0.065em;
  }

  .policy-content {
    gap: 1.35rem;
  }

  .policy-section {
    gap: 0.85rem;
    padding-top: 1rem;
  }

  .policy-section h2 {
    font-size: 1.12rem;
  }

  .policy-section p,
  .policy-section li,
  .policy-section dd {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .policy-purpose {
    gap: 0.65rem;
    padding-top: 0;
  }

  .policy-purpose p {
    display: grid;
    gap: 0.18rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  }

  .policy-purpose p:last-child {
    border-bottom: 0;
  }

  .policy-purpose strong {
    color: rgba(17, 17, 17, 0.46);
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
  }

  .policy-bullets {
    gap: 0.72rem;
    padding-left: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
