@font-face {
  font-family: "Impact";
  src: url("/fonts/Impact.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Haettenschweiler";
  src: url("/fonts/Haettenschweiler.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Arial Narrow Bold";
  src: url("/fonts/Arial-Narrow-Bold.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: block;
}

:root {
  --contact-bg: #fff;
  --contact-ink: #050505;
  --contact-muted: rgba(5, 5, 5, 0.58);
  --contact-line: rgba(5, 5, 5, 0.12);
  --contact-accent: #e50914;
  --contact-display: Impact, Haettenschweiler, "Arial Narrow Bold", "Helvetica Neue Condensed Black", sans-serif;
  --contact-text: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--contact-bg);
  color: var(--contact-ink);
  font-family: var(--contact-text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.site-shell {
  min-height: 100vh;
  background:
    linear-gradient(180deg, #fff 0%, var(--contact-bg) 42%, #fff 100%);
  color: var(--contact-ink);
}

.site-shell--contact {
  --page-header-bg: #fff;
}

.home-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 3vw, 36px);
  color: var(--contact-ink);
  transition: color 200ms ease;
}

.home-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  transition: opacity 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.home-header.is-scrolled::before {
  opacity: 1;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 36px rgba(5, 5, 5, 0.08), 0 1px 0 rgba(5, 5, 5, 0.08);
}

.home-header.is-open {
  color: #f5f5f2;
}

.home-header.is-open::before {
  opacity: 0;
}

.home-header__brand,
.home-header__nav a,
.site-footer,
.contact-kicker,
.contact-title,
.contact-list__label,
.contact-name,
.contact-email,
.contact-socials a,
.cookie-banner__button,
.cookie-banner__link,
.cookie-banner__title {
  font-family: var(--contact-display);
  text-transform: uppercase;
}

.home-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: clamp(1.55rem, 2vw, 2.2rem);
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 0.9;
}

.home-header__brand-mark {
  display: none;
}

.home-header__nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.home-header__nav a {
  color: rgba(5, 5, 5, 0.72);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  transition: color 160ms ease;
}

.home-header__nav a:hover,
.home-header__nav a[aria-current="page"] {
  color: var(--contact-ink);
}

.home-header__menu-button {
  display: none;
}

.home-header__menu-icon {
  position: relative;
  width: 18px;
  height: 14px;
}

.home-header__menu-line {
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: 50% 50%;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease;
}

.home-header__menu-line:nth-child(1) {
  top: 0;
}

.home-header__menu-line:nth-child(2) {
  top: 6px;
}

.home-header__menu-line:nth-child(3) {
  top: 12px;
}

.home-header__socials {
  display: none;
}

.home-header__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.home-header__social-link img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

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

.contact-main {
  min-height: 100vh;
  padding-top: 0;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
  gap: clamp(32px, 7vw, 104px);
  align-items: start;
  min-height: auto;
  padding: clamp(130px, 9.4vw, 158px) clamp(24px, 6vw, 72px) clamp(34px, 5vw, 64px);
}

@media (min-width: 721px) {
  .contact-hero {
    padding-top: 90px;
  }
}

@media (min-width: 1720px) {
  .contact-hero {
    padding-right: calc((100vw - 1720px) / 2 + 72px);
    padding-left: calc((100vw - 1720px) / 2 + 72px);
  }
}

.contact-kicker {
  margin: 0 0 18px;
  color: var(--contact-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1;
}

.contact-title {
  max-width: 7ch;
  margin: 0;
  font-size: clamp(5.4rem, 14vw, 13rem);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: -0.055em;
}

@media (min-width: 721px) {
  .contact-title {
    letter-spacing: -0.035em;
  }
}

.contact-hero__aside {
  padding-top: calc(0.78rem + 18px);
}

.contact-intro {
  max-width: 30rem;
  margin: 0;
  color: rgba(5, 5, 5, 0.72);
  font-size: clamp(1.2rem, 2.6vw, 2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.contact-panel {
  display: grid;
  gap: 0;
  padding: 0 clamp(24px, 6vw, 72px) clamp(44px, 7vw, 72px);
}

.contact-list {
  border-top: 1px solid var(--contact-line);
}

.contact-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.18fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(24px, 4vw, 46px) 0;
  border-bottom: 1px solid var(--contact-line);
}

.contact-row > div {
  container-type: inline-size;
}

.contact-list__label {
  margin: 0;
  color: rgba(5, 5, 5, 0.36);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.contact-name {
  margin: 0;
  font-size: clamp(2.35rem, 5.8vw, 6.5rem);
  font-weight: 900;
  line-height: 0.84;
  letter-spacing: -0.05em;
}

.contact-role {
  margin: 12px 0 0;
  color: var(--contact-muted);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.contact-email {
  position: relative;
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  color: var(--contact-ink);
  font-family: var(--contact-display);
  font-size: clamp(2.2rem, 5.1vw, 5.45rem);
  font-size: clamp(2.2rem, 7.65cqw, 5.65rem);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.012em;
  font-kerning: none;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
}

.contact-email::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 3px;
  background: var(--contact-accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-email:hover::after,
.contact-email:focus-visible::after {
  transform: scaleX(1);
}

.contact-copy {
  max-width: 44rem;
  margin: 0;
  color: rgba(5, 5, 5, 0.76);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.contact-meta {
  display: grid;
  gap: 10px;
  margin: 0;
}

.contact-meta div {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 24px;
}

.contact-meta dt {
  color: rgba(5, 5, 5, 0.38);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-meta dd {
  margin: 0;
  color: rgba(5, 5, 5, 0.76);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
}

.contact-socials a {
  color: rgba(5, 5, 5, 0.56);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  transition: color 160ms ease;
}

.contact-socials a:hover,
.contact-socials a:focus-visible {
  color: var(--contact-ink);
}

.site-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 clamp(22px, 5vw, 64px);
  padding: 18px 0 20px;
  color: rgba(5, 5, 5, 0.42);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.site-footer a {
  color: rgba(5, 5, 5, 0.52);
  transition: color 160ms ease;
}

.site-footer a:hover {
  color: var(--contact-ink);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 20px;
  z-index: 80;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: calc(100vw - 40px);
  max-width: 620px;
  transform: translateX(-50%);
  padding: 16px 18px;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 50px rgba(5, 5, 5, 0.12);
  backdrop-filter: blur(14px);
}

.cookie-banner__content {
  max-width: none;
}

.cookie-banner__title {
  margin-top: 0;
  margin-right: 0;
  margin-left: 0;
  color: #050505;
  margin-bottom: 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.cookie-banner__text {
  margin: 0;
  color: rgba(5, 5, 5, 0.58);
  font-size: 0.74rem;
  line-height: 1.45;
}

.cookie-banner__actions {
  gap: 10px;
}

@media (min-width: 721px) {
  .cookie-banner {
    align-items: center;
  }

  .cookie-banner__actions {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
  }
}

.cookie-banner__button,
.cookie-banner__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(5, 5, 5, 0.14);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.cookie-banner__button {
  border-color: #050505;
  background: #050505;
  color: #fff;
  cursor: pointer;
}

.cookie-banner__button--ghost,
.cookie-banner__link {
  background: transparent;
  color: rgba(5, 5, 5, 0.7);
}

.cookie-banner__button--ghost {
  border-color: rgba(5, 5, 5, 0.14);
}

.cookie-banner__link {
  border-color: rgba(5, 5, 5, 0.14);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .contact-hero__copy,
  .contact-hero__aside,
  .contact-row {
    animation: contact-in 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .contact-hero__aside {
    animation-delay: 80ms;
  }

  .contact-row:nth-child(1) {
    animation-delay: 120ms;
  }

  .contact-row:nth-child(2) {
    animation-delay: 170ms;
  }

  .contact-row:nth-child(3) {
    animation-delay: 220ms;
  }

  .contact-row:nth-child(4) {
    animation-delay: 270ms;
  }
}

@media (max-width: 900px) {
  .contact-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    align-items: start;
  }

  .contact-hero__aside {
    padding-top: 0;
  }

  .contact-title {
    max-width: 100%;
  }

  .contact-intro {
    max-width: 38rem;
  }
}

@media (max-width: 720px) {
  .home-header {
    padding: 16px 18px;
    align-items: center;
    flex-wrap: nowrap;
  }

  .home-header__brand {
    font-size: 1.3rem;
  }

  .home-header__menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 42;
    width: 48px;
    min-width: 48px;
    min-height: 48px;
    margin-left: auto;
    padding: 0;
    border: 1px solid rgba(5, 5, 5, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 10px 24px rgba(5, 5, 5, 0.1);
    color: rgba(5, 5, 5, 0.84);
    cursor: pointer;
  }

  .home-header.is-open .home-header__menu-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .home-header.is-open .home-header__menu-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.4);
  }

  .home-header.is-open .home-header__menu-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .home-header__nav {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(6, 6, 6, 0.98);
    backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
  }

  .home-header.is-open .home-header__nav {
    opacity: 1;
    pointer-events: auto;
  }

  .home-header__socials {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
    padding-top: 22px;
  }

  .contact-main {
    padding-top: 0;
  }

  .contact-hero {
    min-height: auto;
    padding: 86px 24px 36px;
    gap: 26px;
  }

  .contact-title {
    font-size: clamp(5.2rem, 23vw, 8rem);
    letter-spacing: -0.035em;
  }

  .contact-intro {
    font-size: clamp(1.18rem, 5vw, 1.58rem);
    line-height: 1.08;
  }

  .contact-panel {
    padding: 0 22px 40px;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 28px 0;
  }

  .contact-name {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .contact-email {
    font-size: clamp(1.75rem, 8.4vw, 2.85rem);
    line-height: 0.9;
    letter-spacing: -0.006em;
    white-space: normal;
  }

  .contact-copy {
    font-size: clamp(1.05rem, 4.6vw, 1.34rem);
    line-height: 1.18;
  }

  .contact-meta div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-socials {
    gap: 12px 18px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 8px;
    width: auto;
    max-width: none;
    transform: none;
    padding: 12px 14px;
    border-radius: 20px;
    align-items: center;
    text-align: center;
  }

  .cookie-banner__content {
    width: 100%;
  }

  .cookie-banner__title {
    display: none;
  }

  .cookie-banner__text {
    font-size: 0.74rem;
    line-height: 1.45;
  }

  .cookie-banner__actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: 7px;
  }

  .cookie-banner__button,
  .cookie-banner__link {
    width: 100%;
    min-height: 36px;
    padding: 0 8px;
    font-size: 0.64rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }
}

@keyframes contact-in {
  0% {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Kill legacy mobile drawer fallback; final mobile menu lives in mobile-menu.css/white-theme-local.css. */
@media (max-width:720px){.home-header__nav{position:fixed!important;inset:0!important;z-index:40!important;display:flex!important;flex-direction:column!important;align-items:stretch!important;justify-content:flex-start!important;gap:0!important;min-height:100svh!important;padding:max(132px,calc(env(safe-area-inset-top,0px) + 132px)) 28px max(42px,calc(env(safe-area-inset-bottom,0px) + 42px))!important;background:#010101!important;backdrop-filter:none!important;opacity:1!important;visibility:hidden!important;pointer-events:none!important;transform:translate3d(0,-10px,0) scale(.992)!important;transition:transform 320ms cubic-bezier(.22,1,.36,1),visibility 0s linear 320ms!important}.home-header.is-open .home-header__nav{opacity:1!important;visibility:visible!important;pointer-events:auto!important;background:#010101!important;transform:translate3d(0,0,0) scale(1)!important}.home-header.is-open .home-header__nav>a{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif!important;font-size:clamp(2.1rem,5.8vw,3.1rem)!important;font-weight:900!important;letter-spacing:-.04em!important;line-height:.96!important;text-transform:none!important;color:rgba(245,245,242,.68)!important;-webkit-text-fill-color:rgba(245,245,242,.68)!important}}
