:root {
  color-scheme: light;
  background: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  overscroll-behavior: none;
  background: #ffffff;
}

body {
  min-width: 280px;
  color: #111111;
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

.contact-header {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1rem 2rem;
  padding: 1rem clamp(1.25rem, 4vw, 3rem);
  border-bottom: 1px solid #e6e6e6;
  background: rgb(255 255 255 / 92%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.contact-name {
  margin: 0;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 650;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.contact-entry {
  display: grid;
  gap: 0.2rem;
}

.contact-label {
  color: #777777;
  font-size: 0.625rem;
  font-weight: 650;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-details {
  display: flex;
  align-items: center;
  gap: 0.75rem 1.5rem;
  margin: 0;
  color: #4b4b4b;
  font-size: 0.9375rem;
  font-style: normal;
  line-height: 1.4;
}

.contact-details a {
  color: inherit;
  text-decoration-color: #a8a8a8;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.contact-details a:hover {
  color: #000000;
  text-decoration-color: currentColor;
}

.contact-details a:focus-visible {
  border-radius: 2px;
  outline: 2px solid #000000;
  outline-offset: 4px;
}

.particle-stage {
  position: fixed;
  inset: 0;
  overflow: hidden;
  background: #ffffff;
}

[data-particle-triangle] {
  display: block;
  width: 100%;
  height: 100%;
  cursor: grab;
  image-rendering: pixelated;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}

[data-particle-triangle].is-interacting {
  cursor: grabbing;
}

[data-particle-triangle][data-motion="reduced"] {
  cursor: default;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.no-script-triangle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(200px, 60vw);
  aspect-ratio: 1 / 0.8660254;
  background: #000000;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  transform: translate(-50%, -50%);
}

@media (prefers-reduced-motion: reduce) {
  [data-particle-triangle] {
    cursor: default;
  }
}

@media (max-width: 560px) {
  .contact-header {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    min-height: 110px;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
  }

  .contact-details {
    gap: 0.25rem 1.25rem;
    font-size: 0.875rem;
  }
}
